diff --git a/.github/workflows/cancel.yml b/.github/workflows/cancel.yml index aeef6034b83..2435586ca54 100644 --- a/.github/workflows/cancel.yml +++ b/.github/workflows/cancel.yml @@ -2,7 +2,7 @@ name: Cancel on: push: branches: - - dev + - master jobs: cancel: diff --git a/.github/workflows/changelog_generation.yml b/.github/workflows/changelog_generation.yml index 0d5c44c5182..cacfa5d3917 100644 --- a/.github/workflows/changelog_generation.yml +++ b/.github/workflows/changelog_generation.yml @@ -8,7 +8,7 @@ on: jobs: CompileCL: runs-on: ubuntu-latest - if: github.repository == 'Baystation12/Baystation12' # to prevent this running on forks + if: github.repository == 'Project-Wildflower/Wildflower' # to prevent this running on forks steps: - name: Checkout uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f diff --git a/.github/workflows/make_changelogs.yml b/.github/workflows/make_changelogs.yml index f4f9bb23569..3db756f7490 100644 --- a/.github/workflows/make_changelogs.yml +++ b/.github/workflows/make_changelogs.yml @@ -3,12 +3,12 @@ name: Make changelogs on: push: branches: - - dev + - master jobs: MakeCL: runs-on: ubuntu-latest - if: github.repository == 'Baystation12/Baystation12' # to prevent this running on forks + if: github.repository == 'Project-Wildflower/Wildflower' # to prevent this running on forks steps: - name: Checkout uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06875666dc1..89e6797e46d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,13 +3,13 @@ name: Run Tests on: push: branches: - - dev + - master pull_request: branches: - - dev + - master env: - BYOND_MAJOR: "512" - BYOND_MINOR: "1485" + BYOND_MAJOR: "514" + BYOND_MINOR: "1557" SPACEMAN_DMM_VERSION: suite-1.7 jobs: @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - map_path: [example, torch, away_sites_testing] + map_path: [example, torch, exodus, away_sites_testing] steps: - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f - name: Setup Cache diff --git a/baystation12.dme b/baystation12.dme index d666c7c39ca..cebf0ea30be 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -3222,6 +3222,8 @@ #include "maps\away\away_sites.dm" #include "maps\away_sites_testing\away_sites_testing_define.dm" #include "maps\example\example_define.dm" +#include "maps\exodus\exodus.dm" +#include "maps\exodus\exodus_define.dm" #include "maps\random_ruins\exoplanet_ruins\exoplanet_ruins.dm" #include "maps\random_ruins\exoplanet_ruins\crashed_pod\crashed_pod.dm" #include "maps\random_ruins\exoplanet_ruins\datacapsule\datacapsule.dm" @@ -3244,7 +3246,6 @@ #include "maps\random_ruins\exoplanet_ruins\tar_anomaly\tar_anomaly.dm" #include "maps\random_ruins\exoplanet_ruins\trash_heap\trash_heap.dm" #include "maps\random_ruins\space_ruins\space_ruins.dm" -#include "maps\torch\torch.dm" #include "maps\torch\torch_define.dm" #include "maps\~mapsystem\map_preferences.dm" #include "maps\~mapsystem\map_ranks.dm" @@ -3254,5 +3255,6 @@ #include "maps\~mapsystem\maps_jobs.dm" #include "maps\~mapsystem\maps_unit_testing.dm" #include "maps\~unit_tests\unit_testing.dm" +#include "wildflower\code\modules\landmarks.dm" #include "~code\global_init.dm" // END_INCLUDE diff --git a/code/game/machinery/doors/airlock_control.dm b/code/game/machinery/doors/airlock_control.dm index 537a8c1ef2e..993153469b9 100644 --- a/code/game/machinery/doors/airlock_control.dm +++ b/code/game/machinery/doors/airlock_control.dm @@ -147,6 +147,7 @@ name = "airlock sensor" anchored = TRUE + layer = ABOVE_WINDOW_LAYER power_channel = ENVIRON var/master_tag @@ -231,6 +232,7 @@ name = "access button" anchored = TRUE + layer = ABOVE_WINDOW_LAYER power_channel = ENVIRON var/master_tag diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index f07eea09653..e1fbc03dcea 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -46,6 +46,7 @@ set_dir(WEST) else set_dir(SOUTH) + SetBounds() //We may have made directional edits. Need to make sure. Wildflower edit. /obj/machinery/door/airlock/multi_tile/update_connections(var/propagate = 0) var/dirs = 0 @@ -183,4 +184,4 @@ stripe_color = COLOR_AMBER /obj/machinery/door/airlock/multi_tile/glass/civilian - stripe_color = COLOR_CIVIE_GREEN \ No newline at end of file + stripe_color = COLOR_CIVIE_GREEN diff --git a/code/game/machinery/embedded_controller/airlock_docking_controller_multi.dm b/code/game/machinery/embedded_controller/airlock_docking_controller_multi.dm index 5c73e078073..361c5c87481 100644 --- a/code/game/machinery/embedded_controller/airlock_docking_controller_multi.dm +++ b/code/game/machinery/embedded_controller/airlock_docking_controller_multi.dm @@ -51,7 +51,7 @@ /obj/machinery/embedded_controller/radio/airlock/docking_port_multi/ui_interact(mob/user, ui_key = "main", var/datum/nanoui/ui = null, var/force_open = 1, var/datum/nanoui/master_ui = null, var/datum/topic_state/state = GLOB.default_state) var/data[0] - var/datum/computer/file/embedded_program/airlock/multi_docking/airlock_program + var/datum/computer/file/embedded_program/airlock/multi_docking/airlock_program = program // Wildflower change. data = list( "chamber_pressure" = round(airlock_program.memory["chamber_sensor_pressure"]), @@ -61,6 +61,7 @@ "docking_status" = airlock_program.master_status, "airlock_disabled" = (airlock_program.docking_enabled && !airlock_program.override_enabled), "override_enabled" = airlock_program.override_enabled, + "name" = airlock_program.master_tag //This thing is meant to be used as a mapin, this should probably be reading a var somewhere but this works for now. Wildflower change. ) ui = SSnano.try_update_ui(user, src, ui_key, ui, data, force_open) diff --git a/code/game/machinery/embedded_controller/embedded_controller_base.dm b/code/game/machinery/embedded_controller/embedded_controller_base.dm index 67424bfbffd..422e26d12a6 100644 --- a/code/game/machinery/embedded_controller/embedded_controller_base.dm +++ b/code/game/machinery/embedded_controller/embedded_controller_base.dm @@ -1,6 +1,7 @@ /obj/machinery/embedded_controller name = "Embedded Controller" anchored = TRUE + layer = ABOVE_WINDOW_LAYER //Wildflower change idle_power_usage = 10 var/datum/computer/file/embedded_program/program //the currently executing program var/on = 1 @@ -77,7 +78,7 @@ obj/machinery/embedded_controller/radio/Destroy() if(docking_program.override_enabled) overlays += image(icon, "indicator_forced") airlock_program = docking_program.airlock_program - + if(istype(airlock_program) && airlock_program.memory["processing"]) if(airlock_program.memory["pump_status"] == "siphon") overlays += image(icon, "screen_drain") diff --git a/code/game/machinery/nuclear_bomb.dm b/code/game/machinery/nuclear_bomb.dm index 126641c2a89..a7800896002 100644 --- a/code/game/machinery/nuclear_bomb.dm +++ b/code/game/machinery/nuclear_bomb.dm @@ -157,7 +157,7 @@ var/bomb_set extended = 1 if(!src.lighthack) flick("lock", src) - update_icon() + update_icon() /obj/machinery/nuclearbomb/interface_interact(mob/user as mob) if(extended && !panel_open) @@ -413,7 +413,7 @@ var/bomb_set /obj/item/folder/envelope/nuke_instructions/Initialize() . = ..() - var/obj/item/paper/R = new(src) + var/obj/item/paper/R = new(src) //Wildflower Start (Modified instructions to remove references to exact rod round) R.set_content("


\ Warning: Classified
[GLOB.using_map.station_name] Self-Destruct System - Instructions


\ In the event of a Delta-level emergency, this document will guide you through the activation of the vessel's \ @@ -435,6 +435,7 @@ var/bomb_set 13) When ready, disable the safety switch.
\ 14) Start the countdown.

\ This concludes the instructions.", "vessel self-destruct instructions") +//Wildflower end //stamp the paper var/image/stampoverlay = image('icons/obj/bureaucracy.dmi') @@ -459,7 +460,7 @@ var/bomb_set var/announced = 0 var/time_to_explosion = 0 var/self_destruct_cutoff = 60 //Seconds - timeleft = 300 + timeleft = 300 minTime = 300 maxTime = 900 diff --git a/code/game/machinery/nuke_cylinder_dispenser.dm b/code/game/machinery/nuke_cylinder_dispenser.dm index 89a2fd9bc2b..561805e9e99 100644 --- a/code/game/machinery/nuke_cylinder_dispenser.dm +++ b/code/game/machinery/nuke_cylinder_dispenser.dm @@ -3,7 +3,7 @@ desc = "It's a secure, armored storage unit embeded into the floor for storing the nuclear cylinders." icon = 'icons/obj/machines/self_destruct.dmi' icon_state = "base" - anchored = TRUE + anchored = TRUE density = FALSE req_access = list(access_heads_vault) diff --git a/code/game/objects/effects/misc.dm b/code/game/objects/effects/misc.dm index 56f93ad47ad..4947437a1f1 100644 --- a/code/game/objects/effects/misc.dm +++ b/code/game/objects/effects/misc.dm @@ -66,6 +66,13 @@ obj/effect/paint/palegreengray /obj/effect/paint/brown color = COLOR_DARK_BROWN +//Yo why this shit exist in another file to make multimap suffering -TT +/obj/effect/paint/sol + color = COLOR_SOL + +/obj/effect/paint/sol_expeditionary + color = "#68099e" + //Stripes the wall it spawns on, then dies /obj/effect/paint_stripe name = "stripe of paint" @@ -130,4 +137,4 @@ obj/effect/paint/palegreengray P.air_temporary = new(P.volume, tempurature) var/datum/gas_mixture/G = P.air_temporary G.adjust_gas(GAS_OXYGEN,((pressure*P.volume)/(R_IDEAL_GAS_EQUATION*temperature))) - return INITIALIZE_HINT_QDEL \ No newline at end of file + return INITIALIZE_HINT_QDEL diff --git a/code/game/objects/items/weapons/cards_ids.dm b/code/game/objects/items/weapons/cards_ids.dm index e6a7771576c..51fdb1af705 100644 --- a/code/game/objects/items/weapons/cards_ids.dm +++ b/code/game/objects/items/weapons/cards_ids.dm @@ -130,7 +130,7 @@ var/const/NO_EMAG_ACT = -50 /obj/item/card/emag/Initialize() . = ..() set_extension(src,/datum/extension/chameleon/emag) - + /obj/item/card/emag/get_antag_info() . = ..() . += "You can use this cryptographic sequencer in order to subvert electronics or forcefully open doors you don't have access to. These actions are irreversible and the card only has a limited number of charges!" @@ -337,7 +337,7 @@ var/const/NO_EMAG_ACT = -50 id.military_branch = new_branch id.military_rank = null return - + to_chat(client, SPAN_WARNING("Input, must be an existing branch - [var_value] is invalid")) /decl/vv_set_handler/id_card_military_rank @@ -366,7 +366,7 @@ var/const/NO_EMAG_ACT = -50 if(new_rank) id.military_rank = new_rank return - + to_chat(client, SPAN_WARNING("Input must be an existing rank belonging to military_branch - [var_value] is invalid")) /obj/item/card/id/silver diff --git a/code/game/objects/structures/stool_bed_chair_nest/stools.dm b/code/game/objects/structures/stool_bed_chair_nest/stools.dm index fa0423a16d2..2c58b51ff6c 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/stools.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/stools.dm @@ -160,4 +160,9 @@ var/global/list/stool_cache = list() //haha stool //Generated subtypes for mapping porpoises /obj/item/stool/wood/New(var/newloc) - ..(newloc,MATERIAL_WOOD) \ No newline at end of file + ..(newloc,MATERIAL_WOOD) + +//Wildflower Start +/obj/item/stool/wood_yew/New(var/newloc) + ..(newloc,MATERIAL_YEW) +//Wildflower End \ No newline at end of file diff --git a/code/modules/clothing/_clothing.dm b/code/modules/clothing/_clothing.dm index 6f0d1f51928..6bd922a81c6 100644 --- a/code/modules/clothing/_clothing.dm +++ b/code/modules/clothing/_clothing.dm @@ -57,7 +57,7 @@ bloodsies.appearance_flags |= NO_CLIENT_COLOR ret.overlays += bloodsies - if(accessories.len) + if(accessories?.len) for(var/obj/item/clothing/accessory/A in accessories) ret.overlays |= A.get_mob_overlay(user_mob, slot) return ret diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 42310a199eb..4b12a45afb2 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -123,11 +123,13 @@ name = "red jacket" desc = "A red forensics technician jacket." icon_state = "forensics_red" + item_state = "forensics_red" /obj/item/clothing/suit/storage/forensics/blue name = "blue jacket" desc = "A blue forensics technician jacket." icon_state = "forensics_blue" + item_state = "forensics_blue" //Engineering /obj/item/clothing/suit/storage/hazardvest diff --git a/code/modules/materials/material_sheets.dm b/code/modules/materials/material_sheets.dm index 857369653ea..b85d4dc5367 100644 --- a/code/modules/materials/material_sheets.dm +++ b/code/modules/materials/material_sheets.dm @@ -29,7 +29,7 @@ if(default_reinf_type) reinf_material = SSmaterials.get_material_by_name(default_reinf_type) base_state = icon_state - + if(!stacktype) stacktype = material.stack_type if(islist(material.stack_origin_tech)) @@ -47,7 +47,7 @@ if(!material) return recipes = material.get_recipes(reinf_material && reinf_material.name) - ..() + ..() /obj/item/stack/material/get_codex_value() return (material && !material.hidden_from_codex) ? "[lowertext(material.display_name)] (material)" : ..() @@ -75,7 +75,7 @@ if(material_flags & USE_MATERIAL_PLURAL_NAME) plural_name = material.sheet_plural_name - + if(amount>1) SetName("[material.use_name] [plural_name]") desc = "A stack of [material.use_name] [plural_name]." @@ -190,7 +190,7 @@ amount = 10 /obj/item/stack/material/uranium - name = "nuranium" + name = "uranium"//WF Fix icon_state = "sheet-faery-uranium" plural_icon_state = "sheet-faery-uranium-mult" max_icon_state = "sheet-faery-uranium-max" @@ -483,7 +483,7 @@ default_type = MATERIAL_GLASS /obj/item/stack/material/glass/on_update_icon() - if(reinf_material) + if(reinf_material) icon_state = "sheet-glass-reinf" base_state = icon_state plural_icon_state = "sheet-glass-reinf-mult" diff --git a/code/modules/modular_computers/computers/subtypes/preset_tablet.dm b/code/modules/modular_computers/computers/subtypes/preset_tablet.dm index f39a11f5a7c..43cbec0893f 100644 --- a/code/modules/modular_computers/computers/subtypes/preset_tablet.dm +++ b/code/modules/modular_computers/computers/subtypes/preset_tablet.dm @@ -59,3 +59,34 @@ os.create_file(new/datum/computer_file/program/email_client()) os.create_file(new/datum/computer_file/program/records()) os.create_file(new/datum/computer_file/program/wordprocessor()) + +//Wildflower Start + +/obj/item/modular_computer/tablet/lease/preset/medical + desc = "A small, portable microcomputer. This one has a white and red stripe, and a serial number stamped into the case." + icon_state = "tabletmed" + icon_state_unpowered = "tabletmed" + +/obj/item/modular_computer/tablet/lease/preset/medical/install_default_hardware() + ..() + processor_unit = new/obj/item/stock_parts/computer/processor_unit/small(src) + tesla_link = new/obj/item/stock_parts/computer/tesla_link(src) + hard_drive = new/obj/item/stock_parts/computer/hard_drive(src) + network_card = new/obj/item/stock_parts/computer/network_card(src) + nano_printer = new/obj/item/stock_parts/computer/nano_printer(src) + card_slot = new/obj/item/stock_parts/computer/card_slot/broadcaster(src) + battery_module = new/obj/item/stock_parts/computer/battery_module(src) + battery_module.charge_to_full() + scanner = new /obj/item/stock_parts/computer/scanner/medical(src) + +/obj/item/modular_computer/tablet/lease/preset/medical/install_default_programs() + ..() + var/datum/extension/interactive/ntos/os = get_extension(src, /datum/extension/interactive/ntos) + if(os) + os.create_file(new/datum/computer_file/program/reports()) + os.create_file(new/datum/computer_file/program/suit_sensors()) + os.create_file(new/datum/computer_file/program/email_client()) + os.create_file(new/datum/computer_file/program/records()) + os.create_file(new/datum/computer_file/program/wordprocessor()) + +//Wildflower End diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index a664325ddfb..c119b45ed5f 100644 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -261,6 +261,10 @@ if(istype(target, /obj/item/smallDelivery) || istype(target,/obj/structure/bigDelivery) \ || istype(target, /obj/item/gift) || istype(target, /obj/item/evidencebag)) return + //Wildflower Change Start - Fix Package Wrap being unstackable + if(istype(target, /obj/item/stack/package_wrap)) + return + //Wildflower Change End if(target.anchored) return if(target in user) @@ -418,7 +422,7 @@ if(AM.loc.y != src.loc.y-1) return if(WEST) if(AM.loc.x != src.loc.x-1) return - + var/mob/living/L = AM if (istype(L) && L.ckey) log_and_message_admins("has flushed themselves down \the [src].", L) @@ -507,4 +511,4 @@ matter = null uses_charge = 1 charge_costs = list(1) - stacktype = /obj/item/stack/package_wrap \ No newline at end of file + stacktype = /obj/item/stack/package_wrap diff --git a/code/modules/shuttles/landmarks.dm b/code/modules/shuttles/landmarks.dm index 6ae3ae38258..a7fc80ac155 100644 --- a/code/modules/shuttles/landmarks.dm +++ b/code/modules/shuttles/landmarks.dm @@ -7,6 +7,7 @@ unacidable = TRUE simulated = FALSE invisibility = 101 + layer = OBFUSCATION_LAYER // Wildflower change. var/landmark_tag //ID of the controller on the dock side diff --git a/code/modules/shuttles/shuttle_autodock.dm b/code/modules/shuttles/shuttle_autodock.dm index eeccef5cecb..d010e58854c 100644 --- a/code/modules/shuttles/shuttle_autodock.dm +++ b/code/modules/shuttles/shuttle_autodock.dm @@ -8,6 +8,7 @@ var/dock_target = null var/datum/computer/file/embedded_program/docking/shuttle_docking_controller var/docking_codes + var/crack_docking_codes = 0 //Wildflower change, if we 'crack' the docking codes by reading them directly out of the target controller. Only used by the Escape Shuttle. var/obj/effect/shuttle_landmark/next_location //This is only used internally. var/datum/computer/file/embedded_program/docking/active_docking_controller @@ -112,6 +113,9 @@ //not to be confused with the arrived() proc /datum/shuttle/autodock/proc/process_arrived() + //Wildflower Change start + if(crack_docking_codes) + set_docking_codes(next_location.docking_controller.docking_codes) active_docking_controller = next_location.docking_controller update_docking_target(next_location) dock() diff --git a/code/modules/shuttles/shuttle_emergency.dm b/code/modules/shuttles/shuttle_emergency.dm index bb950007515..3257f317353 100644 --- a/code/modules/shuttles/shuttle_emergency.dm +++ b/code/modules/shuttles/shuttle_emergency.dm @@ -29,10 +29,12 @@ if(next_location != waypoint_station) emergency_controller.shuttle_leaving() // This is a hell of a line. v priority_announcement.Announce(replacetext(replacetext((emergency_controller.emergency_evacuation ? GLOB.using_map.emergency_shuttle_leaving_dock : GLOB.using_map.shuttle_leaving_dock), "%dock_name%", "[GLOB.using_map.dock_name]"), "%ETA%", "[round(emergency_controller.get_eta()/60,1)] minute\s")) - else if(next_location == waypoint_offsite && emergency_controller.has_evacuated()) - emergency_controller.shuttle_evacuated() + ..() + if(current_location == waypoint_offsite && emergency_controller.has_evacuated()) + emergency_controller.shuttle_evacuated() //Wildflower changes, Thanks neb for this info + /datum/shuttle/autodock/ferry/emergency/can_launch(var/user) if (istype(user, /obj/machinery/computer/shuttle_control/emergency)) var/obj/machinery/computer/shuttle_control/emergency/C = user @@ -102,7 +104,7 @@ ..(user) /obj/machinery/computer/shuttle_control/emergency - shuttle_tag = "Escape" + shuttle_tag = "Escape Shuttle" var/debug = 0 var/req_authorizations = 2 var/list/authorized = list() @@ -249,3 +251,4 @@ if (!read_authorization(H.get_active_hand())) //try to read what's in their hand first read_authorization(H.wear_id) . = TOPIC_REFRESH + ..() diff --git a/icons/mob/onmob/onmob_suit.dmi b/icons/mob/onmob/onmob_suit.dmi index 2e36798b88e..19746e753f8 100644 Binary files a/icons/mob/onmob/onmob_suit.dmi and b/icons/mob/onmob/onmob_suit.dmi differ diff --git a/icons/obj/clothing/obj_suit.dmi b/icons/obj/clothing/obj_suit.dmi index 9a3ff1cf06a..df0f0ea07b5 100644 Binary files a/icons/obj/clothing/obj_suit.dmi and b/icons/obj/clothing/obj_suit.dmi differ diff --git a/icons/obj/doors/double/door.dmi b/icons/obj/doors/double/door.dmi index 7aec3b074f5..f62b977b5cc 100644 Binary files a/icons/obj/doors/double/door.dmi and b/icons/obj/doors/double/door.dmi differ diff --git a/icons/obj/modular_pda.dmi b/icons/obj/modular_pda.dmi index feac348b4a5..8edfb4cd6ef 100644 Binary files a/icons/obj/modular_pda.dmi and b/icons/obj/modular_pda.dmi differ diff --git a/icons/obj/modular_tablet.dmi b/icons/obj/modular_tablet.dmi index 44521837942..a8aff0622be 100644 Binary files a/icons/obj/modular_tablet.dmi and b/icons/obj/modular_tablet.dmi differ diff --git a/maps/antag_spawn/ert/ert_base.dmm b/maps/antag_spawn/ert/ert_base.dmm index f8f11314138..556fdd85e1c 100644 --- a/maps/antag_spawn/ert/ert_base.dmm +++ b/maps/antag_spawn/ert/ert_base.dmm @@ -1,4 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/map_template/rescue_base/base) "ab" = ( /turf/simulated/floor/wood, /area/map_template/rescue_base/base) @@ -2256,10 +2263,6 @@ icon_state = "vault" }, /area/map_template/rescue_base/base) -"eq" = ( -/obj/machinery/mech_recharger, -/turf/space, -/area/map_template/rescue_base/base) "er" = ( /obj/item/clothing/head/solgov/dress/fleet/command{ dir = 4; @@ -2271,7 +2274,7 @@ }, /area/map_template/rescue_base/base) "es" = ( -/obj/structure/closet/secure_closet/cos, +/obj/structure/closet/secure_closet/hos, /turf/unsimulated/floor{ dir = 1; icon_state = "vault" @@ -2679,7 +2682,7 @@ }, /area/map_template/rescue_base/base) "eU" = ( -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/wall/titanium, /area/map_template/rescue_base/start) "eV" = ( @@ -2691,7 +2694,7 @@ opacity = 0 }, /obj/effect/wallframe_spawn/reinforced/titanium, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "eW" = ( @@ -2703,7 +2706,7 @@ opacity = 0 }, /obj/effect/wallframe_spawn/reinforced/titanium, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "eX" = ( @@ -2917,7 +2920,7 @@ /area/map_template/rescue_base/start) "fx" = ( /obj/effect/wallframe_spawn/reinforced/titanium, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "fy" = ( @@ -2930,7 +2933,7 @@ "fz" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/wallframe_spawn/reinforced/titanium, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "fA" = ( @@ -2958,7 +2961,7 @@ opacity = 0 }, /obj/effect/wallframe_spawn/reinforced/titanium, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "fD" = ( @@ -3022,7 +3025,7 @@ opacity = 0 }, /obj/effect/wallframe_spawn/reinforced/titanium, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "fK" = ( @@ -3470,7 +3473,7 @@ name = "Blast Shutters"; opacity = 0 }, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "gV" = ( @@ -3524,7 +3527,7 @@ name = "Blast Shutters"; opacity = 0 }, -/obj/effect/paint/hull, +/obj/item/clothing/suit/storage/jacket/solgov, /turf/simulated/floor/plating, /area/map_template/rescue_base/start) "hc" = ( @@ -3615,6 +3618,73 @@ /area/map_template/rescue_base/start) (1,1,1) = {" +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +"} +(2,1,1) = {" +ac ab an at @@ -3677,8 +3747,10 @@ ac ac ac ac +ac "} -(2,1,1) = {" +(3,1,1) = {" +ac ac ac ac @@ -3741,8 +3813,10 @@ ac ac ac ac +ac "} -(3,1,1) = {" +(4,1,1) = {" +ac ac ac ac @@ -3805,8 +3879,10 @@ ac ac ac ac +ac "} -(4,1,1) = {" +(5,1,1) = {" +ac ac ac ac @@ -3869,8 +3945,10 @@ ac ac ac ac +ac "} -(5,1,1) = {" +(6,1,1) = {" +ac ac ac ac @@ -3933,8 +4011,10 @@ ac ac ac ac +ac "} -(6,1,1) = {" +(7,1,1) = {" +ac ac ac ac @@ -3997,8 +4077,10 @@ ac ac ac ac +ac "} -(7,1,1) = {" +(8,1,1) = {" +ac ac ac ac @@ -4061,8 +4143,10 @@ ac ac ac ac +ac "} -(8,1,1) = {" +(9,1,1) = {" +ac ac ac ac @@ -4125,8 +4209,10 @@ ac ac ac ac +ac "} -(9,1,1) = {" +(10,1,1) = {" +ac ac ac ac @@ -4189,8 +4275,10 @@ ac ac ac ac +ac "} -(10,1,1) = {" +(11,1,1) = {" +ac ac ac ac @@ -4253,8 +4341,10 @@ bB ac ac ac +ac "} -(11,1,1) = {" +(12,1,1) = {" +ac ac ac ac @@ -4317,8 +4407,10 @@ bB ac ac ac +ac "} -(12,1,1) = {" +(13,1,1) = {" +ac ac ac ac @@ -4381,8 +4473,10 @@ bB bB ac ac +ac "} -(13,1,1) = {" +(14,1,1) = {" +ac ac ac ac @@ -4445,8 +4539,10 @@ bB bB ac ac +ac "} -(14,1,1) = {" +(15,1,1) = {" +ac ac ad ad @@ -4509,8 +4605,10 @@ bB bB ac ac +ac "} -(15,1,1) = {" +(16,1,1) = {" +ac ac ad au @@ -4573,8 +4671,10 @@ bB bC bB ac +ac "} -(16,1,1) = {" +(17,1,1) = {" +ac ac ad ad @@ -4637,8 +4737,10 @@ bB bB bB ac +ac "} -(17,1,1) = {" +(18,1,1) = {" +ac ac ad av @@ -4701,8 +4803,10 @@ bB bB ac ac +ac "} -(18,1,1) = {" +(19,1,1) = {" +ac ac ad aw @@ -4765,8 +4869,10 @@ bB bA ac ac +ac "} -(19,1,1) = {" +(20,1,1) = {" +ac ac ad ad @@ -4829,8 +4935,10 @@ bB bB ac ac +ac "} -(20,1,1) = {" +(21,1,1) = {" +ac ac ac ac @@ -4893,8 +5001,10 @@ bA bB ac ac +ac "} -(21,1,1) = {" +(22,1,1) = {" +ac ac ac ac @@ -4957,8 +5067,10 @@ bB bB ac ac +ac "} -(22,1,1) = {" +(23,1,1) = {" +ac ac ac ac @@ -5021,8 +5133,10 @@ bB bB ac ac +ac "} -(23,1,1) = {" +(24,1,1) = {" +ac ac ac ad @@ -5085,8 +5199,10 @@ bB ac ac ac +ac "} -(24,1,1) = {" +(25,1,1) = {" +ac ac ac ad @@ -5149,8 +5265,10 @@ bC ac ac ac +ac "} -(25,1,1) = {" +(26,1,1) = {" +ad ad ad ad @@ -5213,8 +5331,10 @@ bB bB ac ac +ac "} -(26,1,1) = {" +(27,1,1) = {" +ad ae ao ad @@ -5277,8 +5397,10 @@ bB bB ac ac +ac "} -(27,1,1) = {" +(28,1,1) = {" +ad af ao ad @@ -5341,8 +5463,10 @@ bB bB ac ac +ac "} -(28,1,1) = {" +(29,1,1) = {" +ad ag ao ad @@ -5405,8 +5529,10 @@ bB ac ac ac +ac "} -(29,1,1) = {" +(30,1,1) = {" +ad ad ap ad @@ -5469,8 +5595,10 @@ bB ac ac ac +ac "} -(30,1,1) = {" +(31,1,1) = {" +ad ah ao ao @@ -5533,8 +5661,10 @@ bB ac ac ac +ac "} -(31,1,1) = {" +(32,1,1) = {" +ad ah ao ao @@ -5597,8 +5727,10 @@ bB bB ac ac +ac "} -(32,1,1) = {" +(33,1,1) = {" +ad ad ad ad @@ -5661,8 +5793,10 @@ bB bB ac ac +ac "} -(33,1,1) = {" +(34,1,1) = {" +ad ai aq ax @@ -5725,8 +5859,10 @@ bB bB ac ac +ac "} -(34,1,1) = {" +(35,1,1) = {" +ad aj ar ar @@ -5789,8 +5925,10 @@ bB bB ac ac +ac "} -(35,1,1) = {" +(36,1,1) = {" +ad ak ar ay @@ -5853,8 +5991,10 @@ bB bB ac ac +ac "} -(36,1,1) = {" +(37,1,1) = {" +ad al ar ar @@ -5917,8 +6057,10 @@ bB ac ac ac +ac "} -(37,1,1) = {" +(38,1,1) = {" +ad am as az @@ -5981,8 +6123,10 @@ bB ac ac ac +ac "} -(38,1,1) = {" +(39,1,1) = {" +ad ad ad ad @@ -6045,8 +6189,10 @@ bB bB ac ac +ac "} -(39,1,1) = {" +(40,1,1) = {" +ac ac ac ac @@ -6109,8 +6255,10 @@ bB ac ac ac +ac "} -(40,1,1) = {" +(41,1,1) = {" +ac ac ac ac @@ -6136,9 +6284,9 @@ ad ac ad ee -eq -eq -eq +aa +aa +aa ao ec ad @@ -6173,8 +6321,10 @@ ac ac ac ac +ac "} -(41,1,1) = {" +(42,1,1) = {" +ac ac ac ac @@ -6237,8 +6387,10 @@ ac ac ac ac +ac "} -(42,1,1) = {" +(43,1,1) = {" +ac ac ac ac @@ -6256,8 +6408,8 @@ ad ad ad ad -dc ao +dc ao ao ad @@ -6301,8 +6453,10 @@ ac ac ac ac +ac "} -(43,1,1) = {" +(44,1,1) = {" +ac ac ac ac @@ -6320,8 +6474,8 @@ ac ac ac ad -dc ao +dc ao ao ad @@ -6331,7 +6485,7 @@ ac ac ad ec -eq +aa ec ad ac @@ -6365,8 +6519,10 @@ ac ac ac ac +ac "} -(44,1,1) = {" +(45,1,1) = {" +ac ac ac ac @@ -6429,8 +6585,10 @@ ac ac ac ac +ac "} -(45,1,1) = {" +(46,1,1) = {" +ac ac ac ac @@ -6493,4 +6651,71 @@ ac ac ac ac +ac +"} +(47,1,1) = {" +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ad +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac "} diff --git a/maps/exodus/backup/exodus-2.dmm b/maps/exodus/backup/exodus-2.dmm new file mode 100644 index 00000000000..7c9fd169535 --- /dev/null +++ b/maps/exodus/backup/exodus-2.dmm @@ -0,0 +1,135458 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Briefing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"aab" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Firing Range" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"aac" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"aad" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + id_tag = "detdoor"; + name = "Detective" + }, +/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 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/detectives_office) +"aae" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aaf" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"aag" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/simulated/floor/airless, +/area/space) +"aah" = ( +/turf/simulated/wall/prepainted, +/area/space) +"aai" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Fore" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"aaj" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/airless, +/area/space) +"aak" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/space) +"aal" = ( +/obj/structure/grille/broken, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/airless, +/area/space) +"aam" = ( +/obj/structure/grille, +/turf/space, +/area/space) +"aan" = ( +/obj/structure/grille/broken, +/turf/space, +/area/space) +"aao" = ( +/obj/item/clothing/suit/ianshirt, +/turf/simulated/floor/airless, +/area/space) +"aap" = ( +/turf/simulated/floor/airless, +/area/space) +"aaq" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/space, +/area/space) +"aar" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aas" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolarnorth"; + name = "Fore Solar Array" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aat" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"aau" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/turf/space, +/area/shuttle/escape_pod_3) +"aav" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id_tag = "auxsolarnorth"; + name = "Fore Solar Array" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aaw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aax" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/space) +"aay" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/range) +"aaz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaA" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/prepainted, +/area/space) +"aaB" = ( +/obj/machinery/camera/network/security{ + c_tag = "Armory Exterior"; + dir = 4 + }, +/turf/space, +/area/space) +"aaC" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaD" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/range) +"aaH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/range) +"aaI" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space) +"aaJ" = ( +/obj/item/stack/cable_coil/random, +/turf/space, +/area/space) +"aaK" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"aaL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaO" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Range Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaQ" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaS" = ( +/obj/structure/closet/toolcloset, +/obj/item/clothing/head/hardhat/dblue, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aaT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/warden) +"aaU" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaV" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaW" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaX" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/range) +"aaY" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aba" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abb" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/security_starboard) +"abc" = ( +/obj/structure/lattice, +/obj/structure/grille/broken{ + dir = 4 + }, +/turf/space, +/area/space) +"abd" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/foresolar) +"abe" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abf" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/security_port) +"abg" = ( +/obj/structure/table/rack, +/obj/item/gun/projectile/shotgun/pump, +/obj/item/gun/projectile/shotgun/pump, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/tactical) +"abi" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"abj" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abk" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/security{ + c_tag = "Security - Firing Range East"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abn" = ( +/obj/item/storage/box/lights/mixed, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"abo" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abp" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"abq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/range) +"abr" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/foresolar) +"abs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abt" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"abu" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abv" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abw" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/turf/space, +/area/space) +"abx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"aby" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abz" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "brig_solar_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/foresolar) +"abA" = ( +/obj/machinery/camera/network/security{ + c_tag = "Armoury - Tactical Equipment" + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abB" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/teargas, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abD" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abE" = ( +/obj/machinery/camera/network/security{ + c_tag = "Security - Firing Range West"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abG" = ( +/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/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/range) +"abH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abI" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abK" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abL" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"abO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abP" = ( +/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/steel_grid, +/area/exodus/security/range) +"abQ" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abR" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"abU" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abV" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abX" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "brig_solar_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/foresolar) +"abY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abZ" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "brig_solar_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aca" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"acb" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/foresolar) +"acc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"acd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/security/meeting) +"ace" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"acf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "brig_solar_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + dir = 1; + id_tag = "brig_solar_airlock"; + pixel_y = -25; + tag_airpump = "brig_solar_pump"; + tag_chamber_sensor = "brig_solar_sensor"; + tag_exterior_door = "brig_solar_outer"; + tag_interior_door = "brig_solar_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "brig_solar_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Tactical Equipment" + }, +/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/techfloor/grid, +/area/exodus/security/tactical) +"ach" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"aci" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "brig_solar_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ack" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/security/main) +"acl" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"acm" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/turf/simulated/floor/tiled/dark, +/area/shuttle/arrival/station) +"acn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/shuttle_landmark/escape_pod/start/pod3, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_3) +"aco" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/meeting) +"acp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/armoury) +"acq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"acr" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"act" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"acu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Access"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"acv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acw" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"acx" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acy" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"acz" = ( +/obj/structure/cable, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acA" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"acB" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id_tag = "auxsolarnorth"; + name = "Fore Solar Control" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acC" = ( +/obj/structure/sign/goldenplaque, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"acD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"acE" = ( +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acG" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"acH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"acI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/item/crowbar/brace_jack, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"acK" = ( +/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/exodus/security/armoury) +"acL" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acM" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"acN" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/screwdriver{ + pixel_y = 15 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/table/standard, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acR" = ( +/obj/structure/table/standard, +/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/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acS" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acT" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"acU" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acW" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acY" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/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_grid, +/area/exodus/security/meeting) +"acZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"ada" = ( +/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/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"adb" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"adc" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"add" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ade" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adf" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "Armoury"; + name = "Emergency Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/armoury) +"adg" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adh" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adj" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adl" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "dorm_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/space, +/area/space) +"adm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ado" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/item/storage/box, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adq" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"ads" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adu" = ( +/obj/structure/table/woodentable, +/obj/item/flame/candle{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adv" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adw" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/helmet/ablative, +/obj/item/clothing/head/helmet/ablative, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"adx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"ady" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adA" = ( +/obj/machinery/flasher/portable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adC" = ( +/obj/machinery/flasher/portable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adD" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"adE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adG" = ( +/obj/structure/table/rack, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/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 = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adI" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/meeting) +"adK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"adM" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/ballistic, +/obj/item/clothing/head/helmet/ballistic, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"adN" = ( +/obj/machinery/button/blast_door{ + id_tag = "Armoury"; + name = "Armoury Access"; + pixel_x = -1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adO" = ( +/obj/machinery/door/airlock/external{ + locked = 1; + name = "External Construction Airlock" + }, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"adP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adR" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"adU" = ( +/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/steel_grid, +/area/exodus/security/main) +"adV" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Briefing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"aea" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "HoS Office"; + sort_type = "HoS Office" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"aeb" = ( +/obj/structure/table/standard, +/obj/item/folder/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aec" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"aed" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aee" = ( +/obj/structure/sign/warning/internals_required{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aef" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/device/radio/headset/headset_sec, +/obj/item/device/radio/headset/headset_sec, +/obj/item/device/radio/headset/headset_sec, +/obj/item/device/radio/headset/headset_sec, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"aeg" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeh" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/storage/box/cdeathalarm_kit, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"aei" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/bombclosetsecurity, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aej" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Equipment North"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aek" = ( +/obj/machinery/light, +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"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/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"aem" = ( +/obj/machinery/button/blast_door{ + id_tag = "Armoury"; + name = "Emergency Access"; + pixel_x = -28; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aen" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeo" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aep" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeq" = ( +/obj/machinery/requests_console{ + department = "Security"; + name = "Security RC"; + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aer" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aes" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Armoury Section" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/warden) +"aet" = ( +/obj/structure/window/reinforced, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aev" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aew" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"aex" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aey" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aez" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeA" = ( +/obj/effect/floor_decal/corner/red, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-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/steel_grid, +/area/exodus/security/main) +"aeC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/meeting) +"aeD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeE" = ( +/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/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/warden) +"aeG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/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/steel_grid, +/area/exodus/security/meeting) +"aeH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeI" = ( +/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{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeJ" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aeK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"aeL" = ( +/obj/machinery/barrier, +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/obj/machinery/camera/network/security{ + c_tag = "Armoury" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeM" = ( +/obj/machinery/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeN" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeO" = ( +/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/exodus/security/warden) +"aeP" = ( +/obj/structure/table/rack{ + pixel_y = 6 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Sub-Armory Storage" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Sub-Armory Storage" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "subarmory"; + name = "Sub-Armory Storage" + }, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aeR" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aeS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/security_starboard) +"aeT" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeU" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeV" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/security_port) +"aeX" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeY" = ( +/obj/machinery/button/blast_door{ + id_tag = "subarmory"; + name = "Sub-Armory Storage control"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/secure_closet/security, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afa" = ( +/obj/structure/table/standard, +/obj/item/folder/red, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afc" = ( +/obj/structure/table/standard, +/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/steel_grid, +/area/exodus/security/meeting) +"afd" = ( +/obj/machinery/camera/network/security{ + c_tag = "Security - Briefing"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/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_grid, +/area/exodus/security/meeting) +"aff" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"afg" = ( +/obj/machinery/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afi" = ( +/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_grid, +/area/exodus/security/warden) +"afj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afl" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afm" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/space, +/area/space) +"afn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"afp" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Sub-Armory" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/warden) +"afs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aft" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Security"; + sort_type = "Security" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afu" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donut, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afw" = ( +/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/exodus/security/meeting) +"afx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afy" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afz" = ( +/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/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afA" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/xray/security{ + c_tag = "Security Escape Pod"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/shuttle_landmark/escape_pod/start/pod1, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_1) +"afC" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "dorm_outer"; + name = "Dormitory External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"afD" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "solar_chapel_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"afE" = ( +/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/steel_grid, +/area/exodus/security/warden) +"afF" = ( +/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/tiled/steel_grid, +/area/exodus/security/warden) +"afG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + 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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"afJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afO" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/armband, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afP" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_3) +"afQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"afR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"afS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afT" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afV" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afW" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_chapel_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarstarboard) +"afX" = ( +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afY" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aga" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agb" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agd" = ( +/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/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"age" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"agf" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agg" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"agh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + dir = 1; + id_tag = "escape_pod_3"; + pixel_y = -25; + tag_door = "escape_pod_3_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_3) +"agi" = ( +/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/exodus/security/meeting) +"agj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agl" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + dir = 8; + id_tag = "escape_pod_3_berth"; + pixel_x = 25; + pixel_y = 32; + tag_door = "escape_pod_3_berth_hatch" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agm" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ago" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agp" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agq" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_3_berth_hatch"; + frequency = 1380; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"agr" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_3_hatch"; + frequency = 1380; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_3) +"ags" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"agt" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"agu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"agw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agx" = ( +/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/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"agy" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/raisins, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agC" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"agD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig) +"agE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agF" = ( +/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/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agG" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/effect/floor_decal/corner/red, +/obj/item/stack/package_wrap, +/obj/item/storage/box, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"agK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/detectives_office) +"agL" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/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/crowbar, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agN" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon/SecurityD, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"agO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/hos) +"agQ" = ( +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"agR" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "solar_chapel_airlock"; + pixel_x = 25; + tag_airpump = "solar_chapel_pump"; + tag_chamber_sensor = "solar_chapel_sensor"; + tag_exterior_door = "solar_chapel_outer"; + tag_interior_door = "solar_chapel_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "solar_chapel_sensor"; + master_tag = null; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "solar_chapel_pump" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"agS" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_3) +"agT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/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/plating, +/area/exodus/maintenance/security_starboard) +"agU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"agV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agW" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig) +"agX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Warden's Office" + }, +/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/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/techfloor/grid, +/area/exodus/security/warden) +"agY" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agZ" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Security Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aha" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/processing) +"ahb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"ahc" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + name = "Head of Security RC"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahe" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"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/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahg" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"ahh" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/interrogation) +"ahj" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"ahl" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahm" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/folder/red, +/obj/item/folder/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aho" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/processing) +"ahp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/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/steel_grid, +/area/exodus/security/brig/processing) +"ahq" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ahr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ahs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aht" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ahu" = ( +/obj/machinery/photocopier, +/obj/machinery/newscaster{ + pixel_x = -30; + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahv" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ahx" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ahy" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"ahz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/stamp/denied{ + pixel_x = 5 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"ahB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"ahC" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/material/clipboard, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ahF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahG" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahH" = ( +/obj/structure/table/woodentable, +/obj/item/device/megaphone, +/obj/item/device/radio/off, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ahJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahK" = ( +/turf/simulated/floor, +/area/exodus/security/brig) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ahM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/shuttle_landmark/escape_pod/start/pod2, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_2) +"ahN" = ( +/obj/structure/cable/green{ + 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 = 5 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ahO" = ( +/obj/structure/table/woodentable, +/obj/machinery/keycard_auth{ + pixel_x = 30 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ahQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahR" = ( +/obj/structure/window/reinforced, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahS" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"ahT" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ahU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/interrogation) +"ahV" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ahW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Interrogation" + }, +/obj/item/device/radio/intercom/interrogation{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ahX" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ahY" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"aia" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aib" = ( +/obj/item/device/eftpos{ + eftpos_name = "Brig EFTPOS scanner" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Warden's Desk" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aid" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aie" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/security/prison/restroom) +"aif" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aig" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_chapel_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarstarboard) +"aih" = ( +/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/exodus/security/warden) +"aii" = ( +/obj/item/hand_labeler, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Warden's Desk" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aij" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"aik" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ail" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aim" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ain" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aip" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"air" = ( +/obj/structure/table/woodentable, +/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/carpet, +/area/exodus/crew_quarters/heads/hos) +"ais" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ait" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiu" = ( +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/device/flashlight, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aiv" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiw" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aix" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aiy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiA" = ( +/obj/machinery/camera/network/security{ + c_tag = "Security - Interrogation Observation"; + dir = 4 + }, +/obj/item/device/radio/intercom/interrogation{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aiB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Riot Control" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"aiC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"aiD" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aiE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"aiF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/brig/interrogation) +"aiG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"aiH" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/item/device/taperecorder, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/exodus/security/brig/interrogation) +"aiI" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"aiJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"aiK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiL" = ( +/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/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiN" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aiO" = ( +/obj/machinery/vending/security{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aiP" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiQ" = ( +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"aiR" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"aiS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiT" = ( +/obj/structure/table/standard, +/obj/machinery/camera/network/security{ + c_tag = "Security - Processing"; + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/camera, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiU" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/device/megaphone, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiW" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aiY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aiZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"aja" = ( +/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" + }, +/obj/structure/grille, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/brig/interrogation) +"ajb" = ( +/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{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ajc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/lawoffice) +"ajd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"aje" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ajf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/machinery/button/alternate/door{ + id_tag = "HoSdoor"; + name = "Office Door"; + pixel_x = -36; + pixel_y = 29 + }, +/obj/machinery/button/windowtint{ + pixel_x = -26; + pixel_y = 30 + }, +/obj/machinery/button/blast_door{ + id_tag = "Secure Gate"; + name = "Brig Lockdown"; + pixel_x = -36; + pixel_y = 39 + }, +/obj/machinery/button/blast_door{ + id_tag = "Prison Gate"; + name = "Security Lockdown"; + pixel_x = -24; + pixel_y = 39 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ajg" = ( +/obj/structure/table/standard, +/obj/item/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Evidence Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ajh" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ajj" = ( +/obj/machinery/computer/prisoner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ajk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ajl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ajm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Armoury - Secure"; + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ajn" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Equipment South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "brigobs"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajr" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ajs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "brigobs"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aju" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "brigobs"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajv" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/lobby) +"ajw" = ( +/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/steel_grid, +/area/exodus/security/brig/processing) +"ajx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajy" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajz" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ajA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_port) +"ajB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/item/wrench, +/turf/simulated/floor, +/area/exodus/security/brig) +"ajC" = ( +/obj/machinery/door/window/westright, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ajD" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "solar_chapel_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/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/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"ajE" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ajF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"ajG" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajH" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ajI" = ( +/obj/structure/table/standard, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - HoS' Office"; + dir = 1 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajL" = ( +/obj/structure/table/woodentable, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/camera, +/obj/item/device/camera, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"ajM" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajN" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dorm_sensor"; + pixel_x = 25; + pixel_y = -8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"ajO" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajP" = ( +/obj/structure/closet/secure_closet/hos, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajR" = ( +/obj/structure/table/standard, +/obj/item/storage/box/evidence, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ajS" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Warden's Office" + }, +/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/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/warden) +"ajU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/main) +"ajV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/main) +"ajW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajX" = ( +/obj/machinery/light{ + dir = 1 + }, +/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 = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajY" = ( +/obj/machinery/alarm{ + 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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajZ" = ( +/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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aka" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"akc" = ( +/obj/machinery/door/firedoor, +/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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ake" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akf" = ( +/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/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akg" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -14; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aki" = ( +/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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akk" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"akl" = ( +/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_grid, +/area/exodus/security/brig) +"akm" = ( +/obj/machinery/light{ + dir = 1 + }, +/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 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ako" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/detectives_office) +"akp" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"akq" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"akr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aks" = ( +/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/steel_grid, +/area/exodus/security/brig) +"akt" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aku" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation Observation" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/interrogation) +"aky" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bookcase, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akC" = ( +/obj/structure/table/rack, +/obj/item/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/item/storage/briefcase{ + pixel_x = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akD" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Forensic Office Fore" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"akG" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/woodentable, +/obj/item/device/flash, +/obj/item/clothing/glasses/sunglasses, +/obj/item/reagent_containers/spray/pepper, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akH" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"akI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akL" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akM" = ( +/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/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akN" = ( +/obj/machinery/door_timer/cell_3{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akO" = ( +/obj/machinery/button/blast_door{ + id_tag = "Cell 3"; + name = "Cell 3 Door"; + pixel_x = -1; + pixel_y = -28 + }, +/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/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akP" = ( +/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_grid, +/area/exodus/security/brig) +"akQ" = ( +/obj/machinery/light, +/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/tiled/steel_grid, +/area/exodus/security/brig) +"akR" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/interrogation) +"akS" = ( +/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 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akT" = ( +/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/carpet, +/area/exodus/security/detectives_office) +"akU" = ( +/obj/structure/table/woodentable, +/obj/item/material/ashtray/plastic, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/item/clothing/gloves/forensic, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"akV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig Center"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"akX" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ala" = ( +/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/exodus/security/brig) +"alb" = ( +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alc" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ald" = ( +/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/steel_grid, +/area/exodus/security/brig) +"ale" = ( +/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 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/computer/guestpass{ + pixel_y = -29 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig East"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"alg" = ( +/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/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ali" = ( +/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_grid, +/area/exodus/security/brig) +"alj" = ( +/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/steel_grid, +/area/exodus/security/brig) +"alk" = ( +/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/lino, +/area/exodus/security/detectives_office) +"all" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8; + icon_state = "warningcorner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Atmospherics"; + sort_type = "Atmospherics"; + sortdir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"alm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"aln" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"alo" = ( +/obj/structure/table/rack, +/obj/item/flame/lighter/random, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"alp" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"alq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/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/techfloor/grid, +/area/exodus/security/brig/interrogation) +"alr" = ( +/obj/machinery/atmospherics/unary/tank/nitrous_oxide{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"als" = ( +/obj/machinery/door/airlock/external{ + locked = 1; + name = "External Construction Airlock" + }, +/obj/item/taperoll/engineering/applied, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"alt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alu" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"alv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alw" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/reagent_containers/food/drinks/flask/detflask, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"aly" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alz" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"alC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alD" = ( +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable, +/obj/machinery/button/alternate/door{ + id_tag = "detdoor"; + name = "Office Door" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Processing" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"alJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"alK" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/item/folder/red, +/obj/item/folder/blue, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"alL" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"alM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alN" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"alO" = ( +/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/window/brigdoor/northleft, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"alP" = ( +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"alQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Processing" + }, +/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/techfloor/grid, +/area/exodus/security/brig/processing) +"alS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alT" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alV" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"alW" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/prison) +"alX" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"alY" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"ama" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/door/window/brigdoor/eastleft, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ame" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/westright, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amh" = ( +/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/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ami" = ( +/turf/simulated/wall/prepainted, +/area/exodus/lawoffice) +"amj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/button/alternate/door{ + id_tag = "prisonentry"; + name = "Entry Doors"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/button/alternate/door{ + id_tag = "prisonexit"; + name = "Exit Doors"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/button/flasher{ + id_tag = "permentryflash"; + name = "entry flash"; + pixel_x = -26; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amk" = ( +/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/steel_grid, +/area/exodus/security/brig) +"aml" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/main) +"amm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the brig foyer."; + id_tag = "BrigFoyer"; + name = "Brig Foyer Doors"; + pixel_x = 28; + pixel_y = -15 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"amo" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"amp" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"amq" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ams" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_x = -25 + }, +/obj/item/material/clipboard, +/obj/item/hand_labeler, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amu" = ( +/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/steel_grid, +/area/exodus/security/brig) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"amw" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"amx" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Substation" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"amy" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"amz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amB" = ( +/obj/structure/closet/wardrobe/lawyer_black, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amC" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amD" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amE" = ( +/obj/item/stool/padded, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"amF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"amG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"amH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/power/sensor{ + id_tag = "Security Subgrid"; + name = "Powernet Sensor - Security Subgrid" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"amI" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"amJ" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"amK" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"amL" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"amM" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"amN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig Toxin Control"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"amO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"amP" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amU" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/camera/network/security{ + c_tag = "Security - Prison Processing"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amV" = ( +/obj/machinery/flasher{ + id_tag = "Cell 3"; + pixel_x = -28 + }, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amW" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Cell 3"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amX" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amY" = ( +/obj/machinery/flasher{ + id_tag = "permentryflash"; + name = "Floor mounted flash" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amZ" = ( +/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/button/flasher{ + id_tag = "permflash"; + name = "Brig flashes"; + pixel_y = -27 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ana" = ( +/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/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"anb" = ( +/obj/machinery/button/flasher{ + id_tag = "permflash"; + name = "Brig flashes"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "brigobs"; + name = "observation shutters"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "Secure Gate"; + name = "Brig Lockdown"; + pixel_x = -26; + pixel_y = -4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"and" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/security) +"ane" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Prison Observation"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ang" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/lawoffice) +"anh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"ani" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + 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_tag = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"ank" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "Cell 2"; + name = "Cell Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"anm" = ( +/obj/structure/table/reinforced, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ann" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ano" = ( +/obj/item/storage/secure/safe{ + pixel_x = -23 + }, +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"anp" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/machinery/button/alternate/door{ + id_tag = "detdoor"; + name = "Office Door" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"anr" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ans" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ant" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"anu" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"anv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA\\Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_port) +"anw" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anx" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "prisonexit"; + name = "Brig Exit" + }, +/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/techfloor/grid, +/area/exodus/security/prison) +"any" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/fore) +"anz" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "BrigFoyer"; + name = "Security Wing" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"anA" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"anB" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anC" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"anD" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"anE" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anF" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/detectives_office) +"anH" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"anI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anJ" = ( +/obj/machinery/door_timer/cell_6{ + id_tag = "Cell 2"; + name = "Cell 2"; + pixel_x = 32 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anK" = ( +/obj/machinery/door/blast/regular{ + id_tag = "Cell 3"; + name = "Cell Door" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anL" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "prisonentry"; + name = "Brig Entry" + }, +/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/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"anN" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"anO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anP" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/woodentable, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"anQ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/security) +"anR" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"anS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"anT" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/material/ashtray/plastic{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anU" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"anV" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anW" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anX" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/evahallway) +"anY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"anZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aob" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Holodeck North"; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aoc" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Security" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"aod" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"aof" = ( +/obj/structure/table/woodentable, +/obj/item/device/flash, +/obj/item/reagent_containers/spray/pepper, +/obj/item/clothing/glasses/sunglasses, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aog" = ( +/obj/machinery/requests_console{ + department = "Security"; + name = "Security RC"; + pixel_x = 30 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aoi" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Chamber"; + dir = 1 + }, +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + input_level = 125000; + output_attempt = 1; + output_level = 100000 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"aoj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/sleep/cryo) +"aok" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aol" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aom" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aon" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"aoo" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"aop" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"aoq" = ( +/turf/unsimulated/mask, +/area/space) +"aor" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aos" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "BrigFoyer"; + name = "Security Wing" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"aot" = ( +/obj/machinery/button/blast_door{ + id_tag = "Cell 2"; + name = "Cell 2 Door"; + pixel_x = 30; + pixel_y = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aou" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Cell 2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aov" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aow" = ( +/obj/machinery/computer/arcade, +/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/camera/network/prison{ + c_tag = "Security - Common Brig Northwest" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aox" = ( +/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_grid, +/area/exodus/security/prison) +"aoy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoz" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoA" = ( +/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/exodus/security/prison) +"aoB" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/security) +"aoD" = ( +/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/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aoE" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aoF" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison) +"aoG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoH" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/dormitory) +"aoI" = ( +/obj/structure/table/standard, +/obj/item/material/minihoe, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aoK" = ( +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Internal Affairs" + }, +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aoL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/standard, +/obj/machinery/camera/network/security{ + c_tag = "Security - Lobby"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/westleft, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aoN" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aoO" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -2 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aoP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoR" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aoT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aoU" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoV" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aoW" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aoX" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoY" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aoZ" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"apb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"apc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"apd" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console{ + department = "Internal Affairs"; + name = "Internal Affairs RC"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ape" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"apf" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apg" = ( +/obj/structure/disposalpipe/segment, +/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/door/airlock/maintenance{ + name = "Dormitory\\Security Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aph" = ( +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/exodus/maintenance/exterior) +"api" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"apj" = ( +/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/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apk" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apl" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/structure/cable, +/obj/effect/engine_setup/smes, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_smes) +"apm" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineEmitterPortWest"; + name = "Engine Room Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/empty_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"apn" = ( +/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/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apo" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"app" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/eastright, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"apr" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aps" = ( +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apu" = ( +/obj/random/obstruction, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"apv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"apx" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "dorm_airlock"; + name = "Dormitory Airlock Console"; + pixel_x = 25; + tag_airpump = "dorm_pump"; + tag_chamber_sensor = "dorm_sensor"; + tag_exterior_door = "dorm_outer"; + tag_interior_door = "dorm_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apz" = ( +/obj/machinery/flasher{ + id_tag = "permflash"; + name = "Floor mounted flash" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apA" = ( +/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/exodus/security/prison) +"apB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + dir = 4; + id_tag = "escape_pod_1"; + pixel_x = -25; + tag_door = "escape_pod_1_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_1) +"apD" = ( +/turf/simulated/wall/prepainted, +/area/exodus/gateway) +"apE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"apF" = ( +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"apG" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"apH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"apI" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apJ" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/device/scanner/reagent, +/obj/item/device/scanner/spectrometer, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"apL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/northleft{ + name = "Forensics Area" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/solitaryB) +"apN" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apO" = ( +/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 = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"apR" = ( +/obj/structure/closet/secure_closet/lawyer, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apT" = ( +/obj/structure/table/glass, +/obj/item/forensics/sample_kit/powder, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"apV" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig West"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"apX" = ( +/obj/structure/bed/padded, +/obj/machinery/flasher{ + id_tag = "Cell 2"; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apZ" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "dorm_inner"; + name = "Dormitory Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"aqa" = ( +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqb" = ( +/obj/structure/bed/chair, +/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/steel_grid, +/area/exodus/security/prison) +"aqc" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "on"; + id_tag = "air_in"; + use_power = 1 + }, +/obj/structure/bed/chair, +/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/steel_grid, +/area/exodus/security/prison) +"aqd" = ( +/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/steel_grid, +/area/exodus/security/prison) +"aqe" = ( +/obj/structure/bed/chair, +/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/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqf" = ( +/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/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqg" = ( +/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_grid, +/area/exodus/security/prison) +"aqh" = ( +/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/steel_grid, +/area/exodus/security/prison) +"aqi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqj" = ( +/obj/structure/bed/chair{ + 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/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aql" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Internal Affairs" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/lawoffice) +"aqn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqp" = ( +/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/exodus/lawoffice) +"aqq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aqt" = ( +/obj/structure/table/gamblingtable, +/obj/item/board, +/obj/item/storage/box/checkers/chess/red, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqu" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqw" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqx" = ( +/obj/item/stool, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/security{ + c_tag = "Security - Solitary Confinement North" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"aqy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aqA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"aqB" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqC" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/pods) +"aqE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqF" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/paper, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"aqG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/reinforced, +/obj/item/material/ashtray/plastic{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqH" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Internal Affairs Desk" + }, +/turf/simulated/floor, +/area/exodus/lawoffice) +"aqI" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "dorm_pump" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqK" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "dorm_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqL" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aqM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/microscope, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqN" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqP" = ( +/obj/structure/table/standard, +/obj/item/dice, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/pods) +"aqR" = ( +/obj/structure/table/standard, +/obj/item/dice, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqS" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqT" = ( +/obj/structure/table/standard, +/obj/item/material/ashtray/plastic, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqU" = ( +/obj/structure/table/standard, +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqW" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cups, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqZ" = ( +/obj/machinery/button/alternate/door{ + id_tag = "visitdoor"; + name = "Visitation Access"; + pixel_y = -28 + }, +/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_grid, +/area/exodus/security/lobby) +"ara" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"arb" = ( +/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/steel_grid, +/area/exodus/security/lobby) +"arc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"are" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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/exodus/maintenance/dormitory) +"arf" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Holodeck South"; + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"arg" = ( +/obj/structure/table/glass, +/obj/item/forensics/sample_kit, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ari" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/computer/ship/sensors, +/obj/effect/overmap/visitable/ship/exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"arj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/evidence, +/obj/item/storage/box/swabs, +/obj/machinery/camera/network/security{ + c_tag = "Security - Forensic Office Aft"; + dir = 1 + }, +/obj/item/storage/box/fingerprints, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"ark" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"arl" = ( +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/dnaforensics, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"arm" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"arn" = ( +/obj/structure/table/standard, +/obj/item/device/radio/headset, +/obj/item/device/radio/headset, +/obj/item/device/radio/headset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aro" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arp" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arq" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arr" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/green, +/obj/machinery/camera/network/security{ + c_tag = "Security - IA Office"; + dir = 1 + }, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ars" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "dorm_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"art" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_1) +"aru" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"arv" = ( +/obj/machinery/button/blast_door{ + id_tag = "Cell 1"; + name = "Cell 1 Door"; + pixel_x = 30; + pixel_y = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"arw" = ( +/obj/structure/table/standard, +/obj/item/dice/d20, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"arx" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/solitaryB) +"ary" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Cell 1" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arz" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eva_inner"; + frequency = 1380; + name = "EVA Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"arA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/fore) +"arB" = ( +/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/steel_grid, +/area/exodus/security/prison) +"arC" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "eva_airlock"; + name = "EVA Airlock Console"; + pixel_y = 25; + tag_airpump = "eva_pump"; + tag_chamber_sensor = "eva_sensor"; + tag_exterior_door = "eva_outer"; + tag_interior_door = "eva_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"arD" = ( +/obj/structure/table/gamblingtable, +/obj/item/storage/box/checkers/chess, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"arE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/fore) +"arF" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arG" = ( +/obj/structure/table/standard, +/obj/item/newspaper, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arI" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/detectives_office) +"arJ" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/dormitory) +"arK" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"arL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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/steel_grid, +/area/exodus/security/brig/solitaryB) +"arN" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"arO" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Lobby" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"arP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Lobby" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"arQ" = ( +/obj/structure/table/reinforced, +/obj/item/material/clipboard, +/obj/item/hand_labeler, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"arS" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"arT" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"arU" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"arV" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_2) +"arW" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"arX" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "eva_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_y = 25 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"arY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"arZ" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Solitary Confinement 2" + }, +/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/grid, +/area/exodus/security/brig/solitaryB) +"asa" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"asb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"asc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + id_tag = "Cell 2"; + name = "Cell 2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"asd" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/security/detectives_office) +"asg" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "Cell 1"; + name = "Cell Door" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"ash" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/three_quarters, +/turf/simulated/floor/tiled/dark/monotile, +/turf/simulated/floor/tiled/dark, +/area/shuttle/arrival/station) +"asi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"ask" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asl" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asm" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asn" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aso" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"asp" = ( +/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/plating, +/area/exodus/maintenance/dormitory) +"asq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asr" = ( +/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/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ass" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"ast" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"asu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"asv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/solitaryA) +"asx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + dir = 4; + id_tag = "escape_pod_2"; + pixel_x = -25; + tag_door = "escape_pod_2_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_2) +"asy" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"asz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"asA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/pods) +"asB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"asC" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"asD" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/cyan{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/floor/plating, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"asE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asI" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/red{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/floor/plating, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"asJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asK" = ( +/obj/machinery/door_timer/cell_1{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"asL" = ( +/obj/machinery/atmospherics/pipe/zpipe/down{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/machinery/light, +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/turf/simulated/floor/plating, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"asM" = ( +/obj/structure/bed/padded, +/obj/machinery/flasher{ + id_tag = "Cell 1"; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/solitaryA) +"asO" = ( +/obj/item/stool, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/security{ + c_tag = "Security - Solitary Confinement South" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"asP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asR" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/paper, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"asS" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asT" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"asU" = ( +/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/exodus/maintenance/dormitory) +"asV" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asW" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/prison/dorm) +"asX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"asY" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "visit_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison/dorm) +"asZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/dormitory) +"ata" = ( +/obj/machinery/door/airlock{ + name = "Visitation Area" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison/dorm) +"atb" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atc" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"atd" = ( +/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/plating, +/area/exodus/maintenance/evahallway) +"ate" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "visit_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison/dorm) +"atf" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"atg" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison/dorm) +"ath" = ( +/obj/structure/disposalpipe/segment, +/mob/living/bot/secbot/beepsky, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ati" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Storage"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"atj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"atm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"ato" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_1) +"atq" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/pods) +"ats" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"att" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"atu" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_2) +"atv" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"atw" = ( +/obj/machinery/door/airlock{ + id_tag = "visitdoor"; + name = "Visitation Area" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison/dorm) +"atx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison) +"aty" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"atz" = ( +/obj/machinery/navbeacon/Security, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/evac{ + pixel_x = -30; + pixel_z = -4 + }, +/obj/structure/sign/directions/medical{ + pixel_x = -30; + pixel_z = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atB" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/maintenance/dormitory) +"atC" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"atD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep) +"atE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/sleep) +"atF" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"atG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atH" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"atJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/starboard) +"atK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/latejoin/cryo, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"atL" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/landmark/latejoin/cryo, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"atN" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/security/prepared, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"atO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"atP" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/fitness) +"atQ" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/pods) +"atR" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Cryo Storage" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"atS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/fore) +"atT" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atU" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"atV" = ( +/obj/machinery/cryopod, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atW" = ( +/turf/simulated/floor/reinforced, +/area/holodeck/alphadeck) +"atX" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_1) +"atY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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/steel_grid, +/area/exodus/security/brig/solitaryA) +"atZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aub" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"auc" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aud" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_2) +"aue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"auf" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_1_berth_hatch"; + frequency = 1380; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/pods) +"aug" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"auh" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"aui" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"auj" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Solitary Confinement 1" + }, +/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/grid, +/area/exodus/security/brig/solitaryA) +"auk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"aul" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aum" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aun" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + id_tag = "Cell 1"; + name = "Cell 1" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"auo" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aup" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"auq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aur" = ( +/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/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aus" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aut" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"auu" = ( +/obj/machinery/flasher{ + id_tag = "IAflash"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"auv" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"auw" = ( +/obj/machinery/atm{ + pixel_x = -25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aux" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"auy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Bedroom Fore" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"auz" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"auA" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"auB" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"auC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"auD" = ( +/obj/effect/landmark/latejoin/cryo, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"auE" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"auF" = ( +/obj/effect/landmark/latejoin/cryo, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"auG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"auH" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"auI" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Fitness Room"; + sort_type = "Fitness Room" + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"auJ" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"auK" = ( +/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/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"auL" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"auM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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 = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"auN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/fore) +"auO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"auP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"auQ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/arrivals) +"auR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"auS" = ( +/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/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"auT" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"auU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"auV" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_2_berth_hatch"; + frequency = 1380; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/pods) +"auW" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_1_berth"; + pixel_x = -25; + pixel_y = 25; + tag_door = "escape_pod_1_berth_hatch" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"auX" = ( +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"auY" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"auZ" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ava" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avb" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"avc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"avd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/grey{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ave" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "admin_shuttle_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -28; + pixel_y = -6 + }, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "admin_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"avg" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"avh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avi" = ( +/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/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"avj" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"avl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avm" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"avn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"avo" = ( +/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/exodus/security/prison) +"avp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"avq" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"avr" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"avs" = ( +/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/floor/tiled/steel_grid, +/area/exodus/security/prison) +"avt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avu" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"avv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"avw" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"avx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"avy" = ( +/obj/structure/sign/warning/pods, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/pods) +"avz" = ( +/obj/machinery/cryopod, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"avA" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"avB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"avC" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"avD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"avE" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"avF" = ( +/obj/effect/landmark/latejoin/cryo, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"avG" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"avH" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"avI" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"avJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avK" = ( +/obj/effect/floor_decal/corner/white, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"avM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"avN" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "admin_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"avO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"avP" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avR" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/paperwork_finish_exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"avT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/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{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"avU" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"avV" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"avW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dormitory 2"; + name = "Dorm" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep) +"avX" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Starboard Solar Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarstarboard) +"avY" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals North" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"avZ" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "arrivals_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/space, +/area/space) +"awa" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Core"; + charge = 5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 1; + output_attempt = 1; + output_level = 250000 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/engine_setup/smes, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"awb" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eva_outer"; + frequency = 1380; + name = "EVA External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "eva_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_y = 25 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"awc" = ( +/obj/machinery/airlock_sensor{ + id_tag = "eva_sensor"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "eva_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"awd" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "arrivals_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/arrivals) +"awe" = ( +/obj/machinery/camera/xray/security{ + c_tag = "Arrivals Escape Pods" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awf" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Port Solar Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarport) +"awg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"awh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awi" = ( +/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 + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"awj" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"awk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awl" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Visitation" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awm" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awn" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"awo" = ( +/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/exodus/maintenance/library) +"awp" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awq" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/fore) +"awr" = ( +/obj/machinery/seed_storage/garden{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aws" = ( +/obj/machinery/vending/hydronutrients{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awt" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awu" = ( +/obj/machinery/button/flasher{ + id_tag = "IAflash"; + pixel_y = -30 + }, +/obj/machinery/button/blast_door{ + id_tag = "visit_blast"; + name = "Privacy Shutters"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awv" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/prison/restroom) +"aww" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"awy" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison/restroom) +"awz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"awA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"awB" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_1_hatch"; + frequency = 1380; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_1) +"awC" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_2_hatch"; + frequency = 1380; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_2) +"awD" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"awE" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"awF" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"awG" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_2_berth"; + pixel_x = -25; + pixel_y = 25; + tag_door = "escape_pod_2_berth_hatch" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"awI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"awL" = ( +/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/manifold4w/hidden/supply, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"awM" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep/cryo) +"awN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"awO" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep/cryo) +"awP" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep/cryo) +"awQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Fitness Room West"; + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"awR" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eva_inner"; + frequency = 1380; + name = "EVA Internal Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"awS" = ( +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 4; + icon_state = "corner_white_full" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"awT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"awU" = ( +/obj/effect/floor_decal/corner/white/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"awV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"awW" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "solar_tool_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"awX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Port Access" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"awY" = ( +/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/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"awZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"axa" = ( +/obj/machinery/door/airlock{ + id_tag = "Dormitory 1"; + name = "Dorm" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep) +"axb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eva_pump" + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Airlock Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"axc" = ( +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"axd" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"axe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"axf" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axg" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitories Central" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axh" = ( +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"axi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axj" = ( +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = 10 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"axl" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axm" = ( +/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/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axn" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axo" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eva_outer"; + frequency = 1380; + name = "EVA External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axq" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"axt" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axu" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axv" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"axw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"axx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"axy" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/fitness) +"axz" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/fitness) +"axA" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/fitness) +"axB" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/secure_area, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"axC" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"axD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"axE" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hydroponics) +"axF" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"axG" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"axH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"axI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/obstruction, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"axJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"axK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"axL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"axM" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"axN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian East Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_east) +"axP" = ( +/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/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axQ" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axR" = ( +/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/steel_grid, +/area/exodus/hallway/primary/fore) +"axS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axT" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axU" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axV" = ( +/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/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axW" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axX" = ( +/obj/item/device/t_scanner, +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"axY" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/glasses/threedglasses, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aya" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayb" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"ayc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"ayd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aye" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayf" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayg" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayh" = ( +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"ayj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "admin_shuttle_dock_pump" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"ayk" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"ayl" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aym" = ( +/obj/machinery/power/apc/high{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ayn" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ayp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"ayq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ayr" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ays" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ayt" = ( +/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 = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"ayu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ayv" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Fore"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ayw" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ayx" = ( +/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/exodus/crew_quarters/sleep) +"ayy" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/sign/warning/pods{ + dir = 4; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ayz" = ( +/obj/machinery/light{ + dir = 8 + }, +/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{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"ayB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"ayC" = ( +/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/exodus/maintenance/evahallway) +"ayD" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/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/exodus/maintenance/evahallway) +"ayE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/plating, +/area/exodus/maintenance/evahallway) +"ayF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"ayG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"ayH" = ( +/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/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayI" = ( +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"ayJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plating, +/area/exodus/maintenance/evahallway) +"ayK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/office) +"ayL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/ai_monitored/storage/eva) +"ayM" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"ayN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"ayO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Escape Pods" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"ayP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/dark, +/area/exodus/crew_quarters/sleep) +"ayQ" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/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/item/stock_parts/computer/hard_drive/portable, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayR" = ( +/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/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/arrivals) +"ayT" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayU" = ( +/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/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayV" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayW" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"ayX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/exodus/crew_quarters/fitness) +"ayY" = ( +/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/exodus/crew_quarters/fitness) +"ayZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aza" = ( +/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/exodus/crew_quarters/fitness) +"azb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/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/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azc" = ( +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"azd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aze" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Fitness Room East"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"azf" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"azg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"azh" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azj" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "solar_tool_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarport) +"azk" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azm" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azn" = ( +/obj/machinery/door/airlock/maintenance, +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"azo" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azq" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Northwest" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azr" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azu" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azv" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azx" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Voidsuits" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"azy" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"azz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azB" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azD" = ( +/obj/machinery/power/solar_control{ + id_tag = "auxsolareast"; + name = "Fore Starboard Solar Control" + }, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"azE" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/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/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Voidsuits" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"azG" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/gateway) +"azJ" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Kitchen Cold Room" + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"azK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"azL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/kitchen) +"azM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/kitchen) +"azN" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hydroponics/garden) +"azO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"azP" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"azQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"azR" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"azS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azT" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/security/prepared, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"azU" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"azV" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"azW" = ( +/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/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"azX" = ( +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"azY" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/grey/three_quarters, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAa" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAb" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aAc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAe" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Control" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"aAh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aAi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aAj" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aAk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aAl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "admin_shuttle_dock_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "admin_shuttle_dock_sensor"; + pixel_x = -30; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aAm" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAn" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + dir = 8; + id_tag = "admin_shuttle_dock_airlock"; + pixel_x = 30; + tag_airpump = "admin_shuttle_dock_pump"; + tag_chamber_sensor = "admin_shuttle_dock_sensor"; + tag_exterior_door = "admin_shuttle_dock_outer"; + tag_interior_door = "admin_shuttle_dock_inner" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aAq" = ( +/obj/machinery/door/airlock/external/bolted_open, +/obj/machinery/door/firedoor, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"aAr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aAs" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Fore Port" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aAv" = ( +/obj/machinery/power/solar_control{ + id_tag = "auxsolareast"; + name = "Fore Port Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aAw" = ( +/obj/machinery/door/airlock/external/bolted_open, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/arrival/station) +"aAx" = ( +/obj/machinery/door/airlock/external/bolted_open, +/obj/machinery/door/firedoor, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aAy" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "solar_tool_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_tool_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + dir = 8; + id_tag = "solar_tool_airlock"; + pixel_x = 25; + tag_airpump = "solar_tool_pump"; + tag_chamber_sensor = "solar_tool_sensor"; + tag_exterior_door = "solar_tool_outer"; + tag_interior_door = "solar_tool_inner" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aAz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aAA" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAC" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAD" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAE" = ( +/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/exodus/hallway/secondary/entry/fore) +"aAF" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarport) +"aAG" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAH" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/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/exodus/maintenance/auxsolarport) +"aAI" = ( +/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/dark, +/area/exodus/ai_monitored/storage/eva) +"aAJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aAK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/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/plating, +/area/exodus/maintenance/bar) +"aAL" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/storage/belt/utility, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aAN" = ( +/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/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aAO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aAP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera/network/security{ + c_tag = "EVA Northeast"; + dir = 8 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aAQ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aAR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"aAS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAU" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAV" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAW" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAX" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aAY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAZ" = ( +/obj/structure/table/reinforced, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/aicard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aBa" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/suit/space/void/medical/prepared, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBb" = ( +/obj/structure/disposalpipe/segment, +/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/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"aBc" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aBd" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aBe" = ( +/obj/structure/closet, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aBg" = ( +/obj/machinery/light, +/obj/structure/closet, +/obj/effect/floor_decal/corner/grey/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBh" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBi" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet/athletic_mixed, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/toilet) +"aBk" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBl" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"aBm" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBo" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBp" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aBq" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/kitchen) +"aBr" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aBs" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"aBt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBu" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"aBv" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals South" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBy" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hydroponics/garden) +"aBz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aBA" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aBE" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Southwest" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "nuke_shuttle_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBH" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aBI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aBJ" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBK" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "nuke_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aBL" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aBM" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBN" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBO" = ( +/obj/machinery/gateway/centerstation, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBP" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aBQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aBS" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aBT" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aBU" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aBV" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBW" = ( +/obj/structure/table/standard, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aBX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/nuke_storage) +"aBZ" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/machinery/camera/network/security{ + c_tag = "EVA Northwest"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCb" = ( +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aCd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aCe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCf" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aCh" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aCi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCj" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aCk" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = 10 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aCl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aCm" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space, +/obj/item/clothing/head/helmet/space, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCo" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aCp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aCq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aCr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aCs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aCt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aCu" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_east) +"aCv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarstarboard) +"aCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCx" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aCy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCA" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aCB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCC" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/blackgrid{ + light_inner_range = 2; + light_max_bright = 3; + light_outer_range = 4 + }, +/area/exodus/security/nuke_storage) +"aCD" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aCE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/checkpoint2) +"aCF" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/nuke_cylinder_dispenser, +/turf/simulated/floor/blackgrid{ + light_inner_range = 2; + light_max_bright = 3; + light_outer_range = 4 + }, +/area/exodus/security/nuke_storage) +"aCG" = ( +/obj/machinery/nuclearbomb/station, +/obj/effect/floor_decal/industrial/radiation/full, +/turf/simulated/floor/blackgrid, +/area/exodus/security/nuke_storage) +"aCH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"aCI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aCK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/primary) +"aCL" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/landmark/latejoin/gateway, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCN" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/landmark/latejoin/gateway, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCO" = ( +/obj/machinery/gateway, +/obj/effect/landmark/latejoin/gateway, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCP" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Gateway Arrival Area"; + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCQ" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCS" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCU" = ( +/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, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/suit/space/void/atmos/prepared, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCW" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCX" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Bedroom Aft"; + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"aCY" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aDa" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/storage/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDb" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDc" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDd" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDe" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_east) +"aDf" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/item/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDi" = ( +/obj/structure/table/woodentable, +/obj/machinery/bookbinder, +/obj/item/stack/material/plastic/ten, +/obj/item/stack/material/wood/ten, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aDj" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/arrival/station) +"aDm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aDn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aDo" = ( +/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/camera/network/exodus{ + c_tag = "Arrivals East"; + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aDp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/bar) +"aDq" = ( +/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/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aDr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDs" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/bar) +"aDt" = ( +/obj/structure/closet/lasertag/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aDu" = ( +/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{ + RCon_tag = "Substation - Civilian East" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aDv" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civilian East Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aDw" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/package_wrap, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aDx" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"aDz" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/flashlight/flare, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aDB" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aDC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/library) +"aDD" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"aDE" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aDF" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aDH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aDI" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDJ" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDK" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/arrival/station) +"aDL" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDM" = ( +/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/steel_grid, +/area/exodus/storage/primary) +"aDN" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Tool Storage - Primary" + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDO" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDP" = ( +/obj/structure/table/standard, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDQ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"aDR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aDS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aDT" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aDU" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aDV" = ( +/obj/structure/closet/gmcloset, +/obj/item/device/eftpos{ + eftpos_name = "Bar EFTPOS scanner" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/glass_jar, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aDW" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aDX" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aDY" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Fore Starboard" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Starboard"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aDZ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarport) +"aEa" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aEb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aEc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Port"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aEd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/primary) +"aEe" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"aEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aEg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aEh" = ( +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/stack/package_wrap, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar Backroom" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aEi" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"aEj" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aEk" = ( +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Voidsuits" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"aEl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aEm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aEn" = ( +/obj/machinery/hologram/holopad, +/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/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aEo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aEp" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aEq" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aEr" = ( +/obj/machinery/door/firedoor, +/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/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aEs" = ( +/obj/structure/hygiene/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/freezer, +/area/exodus/crew_quarters/toilet) +"aEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aEv" = ( +/obj/structure/table/woodentable, +/obj/item/gun/projectile/shotgun/doublebarrel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aEw" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEy" = ( +/obj/machinery/light/small, +/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 = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aEA" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge/meeting_room) +"aEB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aED" = ( +/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 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Starboard Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aEE" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "solar_tool_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarport) +"aEF" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tape_roll, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aEG" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge/meeting_room) +"aEI" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/space, +/area/shuttle/arrival/station) +"aEK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge/meeting_room) +"aEL" = ( +/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/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aEM" = ( +/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/dark, +/area/exodus/security/checkpoint2) +"aEN" = ( +/obj/structure/closet/wardrobe/red, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aEO" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aEP" = ( +/obj/item/storage/secure/safe{ + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aEQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aER" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aET" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Bar"; + sort_type = "Bar" + }, +/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/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aEU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aEV" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aEW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aEX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aEY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aFa" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aFb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/chargebay) +"aFc" = ( +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFd" = ( +/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/plating, +/area/exodus/maintenance/library) +"aFe" = ( +/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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFg" = ( +/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/exodus/maintenance/library) +"aFh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aFi" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aFj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aFk" = ( +/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/steel_grid, +/area/exodus/storage/primary) +"aFn" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aFq" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison/restroom) +"aFr" = ( +/obj/item/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aFs" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aFt" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/camera/network/command{ + c_tag = "Vault"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aFu" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "escape_dock_north_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aFv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/fire{ + icon_state = "stripe"; + dir = 1 + }, +/mob/living/simple_animal/friendly/mouse/brown/Tom, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aFw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFx" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aFy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/fire{ + icon_state = "stripe"; + dir = 1 + }, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aFz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "Skynet_launch"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"aFA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aFB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aFC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_west) +"aFD" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "merchant_shuttle_station_exterior"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"aFE" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Northeast" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aFG" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aFH" = ( +/obj/machinery/requests_console{ + department = "Security"; + pixel_y = 30 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aFI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A." + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"aFJ" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aFK" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aFL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aFM" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aFN" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aFO" = ( +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aFP" = ( +/obj/machinery/door/firedoor, +/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/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aFQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aFR" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + id_tag = "Civilian East Subgrid"; + name = "Powernet Sensor - Civilian East Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aFS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aFT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/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/camera/network/civilian_east{ + c_tag = "Dormitories South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aFU" = ( +/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/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aFV" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/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, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep) +"aFW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aFX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aFZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/bar/cabin) +"aGb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/arrival/station) +"aGc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/robotics) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/folder/white, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/robotics) +"aGf" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Arrival Checkpoint"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGg" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/lab) +"aGh" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Research and Development Desk" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/lab) +"aGj" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGk" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_dock_north_inner"; + frequency = 1380; + name = "Escape Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aGl" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aGm" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGn" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/toilet) +"aGo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aGp" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aGq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/grey, +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aGr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aGs" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aGt" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aGu" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/fire{ + icon_state = "stripe"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aGw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aGx" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aGy" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarstarboard) +"aGz" = ( +/obj/structure/safe, +/obj/item/clothing/under/color/yellow, +/obj/item/key, +/obj/item/material/sword/katana, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/fire{ + icon_state = "stripe"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aGA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aGB" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "centcom_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aGC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aGD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aGE" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aGF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/chapel/office) +"aGG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/chapel/main) +"aGH" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aGI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/chefcloset, +/obj/item/device/eftpos{ + eftpos_name = "Kitchen EFTPOS scanner" + }, +/obj/item/glass_jar, +/obj/item/book/manual/chef_recipes, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aGJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"aGK" = ( +/obj/item/stool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aGL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aGM" = ( +/obj/structure/table/woodentable, +/obj/item/dice/d20, +/obj/item/dice, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aGN" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aGO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "chemwindow"; + name = "Chemistry Window Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"aGP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/checkpoint2) +"aGQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aGR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aGS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aGT" = ( +/obj/machinery/suit_storage_unit/medical, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aGU" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aGV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "west bump"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aGW" = ( +/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/dark, +/area/exodus/ai_monitored/storage/eva) +"aGX" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/starboard) +"aGY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aGZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/fore) +"aHb" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"aHc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian East Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_east) +"aHd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/primary) +"aHe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "escape_dock_south_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aHf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aHg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aHh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"aHi" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aHj" = ( +/obj/item/crowbar, +/obj/item/device/flash, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aHk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aHl" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHm" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aHo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aHp" = ( +/obj/structure/hygiene/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHq" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aHr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHs" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"aHt" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Bar Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/bar/cabin) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_dock_south_inner"; + frequency = 1380; + name = "Escape Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aHv" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel Office" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHy" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "chapel"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aHz" = ( +/obj/machinery/button/blast_door{ + id_tag = "chapel"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHA" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHB" = ( +/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/machinery/door/airlock/hatch{ + name = "Command Substation" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"aHC" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/mass_driver{ + id_tag = "chapelgun"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHE" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHF" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aHG" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver" + }, +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "chapelgun" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aHH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aHI" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/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/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aHJ" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint" + }, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aHK" = ( +/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/plating, +/area/exodus/maintenance/bar) +"aHL" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aHM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aHN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aHO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/decal/cleanable/flour, +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aHP" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Kitchen"; + sort_type = "Kitchen" + }, +/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/plating, +/area/exodus/maintenance/bar) +"aHQ" = ( +/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 + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aHR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Security Checkpoint" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aHS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aHT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aHU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aHV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/plating, +/area/exodus/maintenance/locker) +"aHW" = ( +/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/exodus/maintenance/bar) +"aHX" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Hydroponics"; + sort_type = "Hydroponics" + }, +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aHY" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aHZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aIa" = ( +/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{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aIb" = ( +/obj/structure/disposalpipe/segment{ + 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/plating, +/area/exodus/maintenance/library) +"aIc" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aId" = ( +/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/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aIe" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar"; + name = "Bar Shutters" + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aIf" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aIg" = ( +/turf/simulated/wall/prepainted, +/area/exodus/library) +"aIh" = ( +/obj/machinery/alarm{ + 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 = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aIi" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/item/stool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aIj" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aIk" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aIl" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aIm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aIn" = ( +/obj/structure/disposalpipe/segment, +/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{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aIo" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"aIp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aIq" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aIr" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Chapel"; + sort_type = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aIs" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aIt" = ( +/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/steel_grid, +/area/exodus/gateway) +"aIu" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "xeno_airlock_control"; + frequency = 1380; + name = "Xenobiology Access Button"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/research{ + autoclose = 0; + id_tag = "xeno_airlock_exterior"; + locked = 1; + name = "Xenobiology External Airlock" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"aIv" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/space, +/area/space) +"aIw" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/arrival/station) +"aIx" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aIy" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aIz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"aIA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/starboard) +"aIB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/engineering, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aIC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A. Cycler Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"aID" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aIE" = ( +/obj/structure/sign/double/map/left, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/starboard) +"aIF" = ( +/obj/structure/sign/double/map/right, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/starboard) +"aIG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aIH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aII" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aIJ" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aIK" = ( +/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/door/airlock/engineering{ + name = "Civilian West Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_west) +"aIM" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aIN" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aIO" = ( +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"aIP" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"aIQ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/nuke_storage) +"aIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aIS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"aIT" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/storage/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aIU" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aIV" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aIW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aIX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aIY" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aIZ" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aJa" = ( +/obj/machinery/door/airlock{ + name = "Unit B" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aJb" = ( +/obj/machinery/navbeacon/Bar, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/bar/cabin) +"aJc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/l3closet/scientist, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aJd" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon/Kitchen, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/kitchen) +"aJe" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/central_one) +"aJf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aJg" = ( +/obj/structure/crematorium, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aJh" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/central_two) +"aJj" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJk" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJl" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_two) +"aJm" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJn" = ( +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJo" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aJp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aJq" = ( +/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/dark, +/area/exodus/chapel/main) +"aJr" = ( +/obj/structure/sign/monkey_painting{ + pixel_x = -28; + pixel_y = 4 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aJt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aJu" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/command) +"aJv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aJw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aJx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"aJy" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aJA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aJC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aJD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/library) +"aJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/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/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJF" = ( +/obj/machinery/door/window/southleft{ + name = "Kitchen Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/kitchen) +"aJG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civilian West" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aJH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJI" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Lounge" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aJQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aJS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aJT" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aJU" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/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/freezer, +/area/exodus/security/prison/restroom) +"aJV" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aJW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aJY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aJZ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/sensor{ + id_tag = "Civilian West Subgrid"; + name = "Powernet Sensor - Civilian West" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aKa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civilian West Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aKb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aKc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aKd" = ( +/obj/machinery/navbeacon/ToolStorage, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aKe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKf" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aKg" = ( +/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/plating, +/area/exodus/maintenance/locker) +"aKh" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aKj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/vault/bolted, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aKk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aKm" = ( +/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/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aKn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aKo" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aKp" = ( +/obj/machinery/vending/fashionvend, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aKr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aKs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aKt" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aKu" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aKv" = ( +/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" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aKw" = ( +/obj/structure/lattice, +/turf/space, +/area/exodus/ai_monitored/storage/eva) +"aKx" = ( +/obj/machinery/camera/network/security{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/ai_monitored/storage/eva) +"aKy" = ( +/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/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aKz" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aKA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aKC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aKE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 32; + pixel_z = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 32 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - North" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aKF" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aKG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/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/grey/three_quarters, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aKH" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"aKI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aKJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aKL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aKM" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aKN" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/bar/cabin) +"aKO" = ( +/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 = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aKP" = ( +/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/command{ + name = "Electrical Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"aKQ" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar North" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/flame/lighter/zippo, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aKR" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"aKS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aKT" = ( +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Hydroponics Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aKU" = ( +/obj/machinery/requests_console{ + department = "Bar"; + name = "Bar RC"; + pixel_y = 30 + }, +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aKV" = ( +/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 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKW" = ( +/obj/machinery/navbeacon/Hydroponics, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aKX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aKY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aKZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/kitchen) +"aLa" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aLb" = ( +/obj/structure/table/woodentable, +/obj/item/nullrod, +/obj/item/device/eftpos{ + eftpos_name = "Chapel EFTPOS scanner" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aLc" = ( +/obj/structure/table/woodentable, +/obj/item/pen, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aLd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Cold Room Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"aLe" = ( +/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, +/obj/machinery/door/airlock/maintenance{ + name = "Bar\\Library Maintenance" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/bar) +"aLf" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hydroponics) +"aLg" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "chapel"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/machinery/door/window/westleft{ + name = "Coffin Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aLh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/exodus/hydroponics) +"aLi" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Library North" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLk" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aLl" = ( +/obj/structure/table/woodentable, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aLo" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aLr" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/robotics) +"aLs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aLu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aLw" = ( +/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/engineering{ + name = "Civilian West Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_west) +"aLx" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"aLy" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLB" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aLC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aLD" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"aLE" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "nuke_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aLF" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"aLG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Gateway Access" + }, +/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/techfloor/grid, +/area/exodus/hallway/primary/port) +"aLH" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aLI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A." + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aLJ" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aLK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/port) +"aLL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"aLM" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aLN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Robotics"; + sort_type = "Robotics" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aLO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/status_display, +/obj/machinery/door/firedoor, +/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/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"aLP" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "nuke_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "nuke_shuttle_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aLQ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aLR" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_three) +"aLS" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/chemistry) +"aLT" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aLU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/chargebay) +"aLV" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"aLW" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_dock_north_outer"; + frequency = 1380; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "escape_dock_north_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = 4; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aLX" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay3) +"aLY" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aLZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + pixel_x = -28 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aMb" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_one) +"aMc" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aMd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMe" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMf" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aMg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMh" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"aMi" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"aMj" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aMk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aMl" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aMm" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay) +"aMo" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/barman_recipes, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/screwdriver, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aMq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMs" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMv" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1; + name = "disposal inlet" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aMw" = ( +/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 = "Chef" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aMx" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/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/techfloor/grid, +/area/exodus/security/prison/restroom) +"aMy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aMz" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aMB" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aMC" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aME" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/bar) +"aMF" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMG" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/mob/living/bot/farmbot/premade, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aMI" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + 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/lino, +/area/exodus/chapel/office) +"aMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/office) +"aML" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aMM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/docking) +"aMN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aMO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aMP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel North"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aMR" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMS" = ( +/obj/structure/closet/crate, +/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{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aMT" = ( +/obj/structure/table/standard, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aMU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMV" = ( +/turf/simulated/wall/titanium, +/area/shuttle/arrival/station) +"aMW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "arrivals_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "arrivals_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + dir = 8; + id_tag = "arrivals_airlock"; + pixel_x = 25; + tag_airpump = "arrivals_pump"; + tag_chamber_sensor = "arrivals_sensor"; + tag_exterior_door = "arrivals_outer"; + tag_interior_door = "arrivals_inner" + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aMX" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aMY" = ( +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aMZ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aNa" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aNb" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aNc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hydroponics) +"aNd" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aNe" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aNg" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aNh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aNi" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aNk" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNl" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "centcom_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "centcom_shuttle_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aNm" = ( +/obj/machinery/flasher{ + id_tag = "permflash"; + name = "Floor mounted flash" + }, +/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/steel_grid, +/area/exodus/security/prison) +"aNn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNp" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aNq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNr" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNs" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Port - Central" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNu" = ( +/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/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNv" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -13; + pixel_y = 28 + }, +/obj/machinery/atm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNz" = ( +/obj/machinery/navbeacon/Lockers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNA" = ( +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"aNC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"aND" = ( +/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_grid, +/area/exodus/hallway/primary/central_one) +"aNE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNF" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNG" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Northwest" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNJ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNM" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_dock_south_outer"; + frequency = 1380; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "escape_dock_south_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aNN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aNO" = ( +/obj/machinery/suit_cycler/engineering, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aNP" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/cryopod{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aNQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNR" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"aNV" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aNW" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aNY" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNZ" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aOa" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aOb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aOc" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aOd" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "specops_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "specops_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aOe" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/button/blast_door{ + id_tag = "bar"; + name = "Bar Shutters"; + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aOg" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/chips, +/obj/random/single{ + icon_state = "cola"; + name = "randomly spawned cola"; + spawn_object = /obj/item/reagent_containers/food/drinks/cans/cola + }, +/turf/simulated/floor/carpet, +/area/exodus/hallway/secondary/entry/starboard) +"aOh" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aOi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aOj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOl" = ( +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOn" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aOo" = ( +/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/freezer, +/area/exodus/crew_quarters/kitchen) +"aOp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aOq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Hydroponics Pasture West"; + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOv" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Pasture" + }, +/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/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aOx" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOA" = ( +/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/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aOC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aOE" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aOF" = ( +/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/lino, +/area/exodus/chapel/office) +"aOG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aOH" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aOI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aOJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aOK" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aOL" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment, +/obj/item/deck/cards, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aOM" = ( +/obj/structure/table/woodentable, +/obj/item/material/ashtray/plastic{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/device/radio/intercom/entertainment{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "east bump"; + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aOP" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aOQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"aOR" = ( +/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/effect/floor_decal/plaque, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aOT" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aOU" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aOV" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aOW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aOX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aOY" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aOZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/security/prison/dorm) +"aPa" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/docking) +"aPb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aPc" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Bedroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aPd" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aPe" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPh" = ( +/turf/simulated/floor/carpet, +/area/exodus/hallway/secondary/entry/starboard) +"aPi" = ( +/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_grid, +/area/exodus/hallway/primary/port) +"aPj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aPk" = ( +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPl" = ( +/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 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPm" = ( +/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/exodus/hallway/primary/port) +"aPn" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPp" = ( +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aPq" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPr" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_two) +"aPs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aPt" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPu" = ( +/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_grid, +/area/exodus/hallway/primary/central_one) +"aPv" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/hallway/primary/central_one) +"aPw" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPx" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aPy" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPz" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPA" = ( +/obj/machinery/navbeacon/EVA, +/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_grid, +/area/exodus/hallway/primary/central_one) +"aPB" = ( +/obj/machinery/navbeacon/EVA2, +/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_grid, +/area/exodus/hallway/primary/central_one) +"aPC" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPD" = ( +/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_grid, +/area/exodus/hallway/primary/central_two) +"aPE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPF" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/hallway/primary/central_two) +"aPG" = ( +/obj/machinery/navbeacon/Dorm, +/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/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aPH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aPI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aPJ" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aPK" = ( +/obj/machinery/door/window{ + autoset_access = 0; + dir = 4; + name = "Bar"; + req_access = list("ACCESS_BAR") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aPL" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aPM" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPN" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPP" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPU" = ( +/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/exodus/hydroponics) +"aPV" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"aPW" = ( +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPZ" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/office) +"aQa" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/flame/lighter/zippo, +/obj/item/storage/fancy/cigarettes, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQb" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"aQc" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "rescue_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aQd" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "rescue_shuttle_dock_outer"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "rescue_shuttle_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -26; + pixel_y = -5 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aQe" = ( +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aQf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aQg" = ( +/obj/machinery/door/blast/regular{ + id_tag = "trash"; + name = "disposal mass driver" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/exodus/maintenance/disposal) +"aQh" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/exterior) +"aQi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aQj" = ( +/obj/structure/table/woodentable, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/obj/random/single{ + icon_state = "lighter-g"; + name = "randomly spawned lighter"; + spawn_object = /obj/item/flame/lighter + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aQk" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aQl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aQm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aQn" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQo" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aQp" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"aQq" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aQr" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/random/tech_supply, +/obj/item/clothing/head/flatcap, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQs" = ( +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQt" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower/security, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQw" = ( +/obj/machinery/photocopier, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aQx" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQz" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Common Brig Southwest"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aQA" = ( +/obj/item/stool, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aQB" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hor) +"aQC" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "cargo_bay_door"; + frequency = 1380; + name = "Cargo Docking Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"aQD" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aQE" = ( +/obj/machinery/door/airlock/glass{ + name = "Brig Dormitories" + }, +/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/steel_grid, +/area/exodus/security/prison/dorm) +"aQF" = ( +/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/exodus/security/prison/dorm) +"aQG" = ( +/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/exodus/hallway/primary/port) +"aQH" = ( +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQI" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aQJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "office_shutter"; + name = "Office Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/starboard) +"aQK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aQL" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aQM" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aQN" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aQO" = ( +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/qm) +"aQP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aQQ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aQS" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"aQT" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/door/window/westright{ + name = "Library Desk Door" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aQU" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/docking_area, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"aQV" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aQW" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"aQX" = ( +/obj/item/material/hatchet, +/obj/item/material/minihoe, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aQY" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"aQZ" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRa" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRb" = ( +/obj/machinery/seed_storage/garden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRc" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRe" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRf" = ( +/obj/structure/table/standard, +/obj/item/material/minihoe, +/obj/item/material/hatchet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRi" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"aRj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Hydroponics Pasture East"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRl" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aRm" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/invisible, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aRn" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + pixel_x = -25 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the research doors."; + id_tag = "researchdoor"; + name = "Research door control"; + pixel_x = -27; + pixel_y = 13 + }, +/obj/machinery/button/blast_door{ + id_tag = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -38; + pixel_y = 2 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "researchlockdown"; + name = "Research Division Emergency Lockdown Control"; + pixel_x = -38; + pixel_y = 13 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"aRo" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id_tag = "office_shutter"; + name = "Office Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/starboard) +"aRq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRs" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/storage/box/lights/mixed, +/obj/item/extinguisher, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aRt" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"aRu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aRv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aRw" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aRx" = ( +/obj/structure/table/woodentable, +/obj/random/single{ + name = "randomly spawned deck of cards"; + spawn_object = /obj/item/deck/cards + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aRy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRz" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRA" = ( +/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/exodus/chapel/main) +"aRB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "cargo_bay_door"; + frequency = 1380; + name = "Cargo Docking Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"aRC" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "research_dock_outer"; + frequency = 1380; + name = "Shuttle Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"aRD" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aRE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aRF" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "cargo_bay_door"; + frequency = 1380; + name = "Cargo Docking Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"aRH" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "arrivals_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/arrivals) +"aRI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aRJ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aRK" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aRL" = ( +/turf/simulated/floor/carpet, +/area/exodus/library) +"aRM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/exodus/library) +"aRO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"aRP" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aRQ" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aRR" = ( +/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, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aRS" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aRT" = ( +/obj/structure/table/standard, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Port - East"; + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aRU" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/dormitory) +"aRV" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aRW" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aRX" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_z = 4 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_z = -4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/port) +"aRY" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aRZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/exit) +"aSa" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay3) +"aSb" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aSc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay) +"aSd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aSe" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aSf" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar East" + }, +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aSh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Pasture" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aSi" = ( +/obj/machinery/door/airlock/glass{ + name = "Garden Storage" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hydroponics/garden) +"aSj" = ( +/obj/machinery/light/small, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aSk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay) +"aSl" = ( +/obj/machinery/light/small, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSm" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aSn" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aSq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 0; + icon_state = "shutter0"; + id_tag = "staffroom"; + name = "Staff Room Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/cryo) +"aSr" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/disposal) +"aSs" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSu" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aSv" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"aSw" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSx" = ( +/obj/machinery/lapvend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "south bump"; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aSA" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "staffroom"; + name = "Staff Room Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aSB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/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/exodus/research) +"aSC" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"aSD" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aSE" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "solar_tool_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aSF" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aSH" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"aSK" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"aSL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aSM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aSN" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aSO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSP" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSS" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aST" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSU" = ( +/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/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aSW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSX" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aSY" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"aTa" = ( +/obj/machinery/smartfridge, +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/kitchen) +"aTb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"aTc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aTd" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research) +"aTe" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hydroponics/garden) +"aTf" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"aTg" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + frequency = 1380; + child_names_txt = "Airlock One;Airlock Two"; + child_tags_txt = "escape_dock_north_airlock;escape_dock_south_airlock"; + dir = 1; + id_tag = "escape_dock"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aTh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aTi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aTj" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "specops_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aTk" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aTl" = ( +/obj/machinery/conveyor{ + dir = 10; + id_tag = "garbage" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aTm" = ( +/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/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTo" = ( +/turf/simulated/floor/carpet, +/area/exodus/chapel/main) +"aTp" = ( +/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{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTq" = ( +/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTr" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aTs" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/material/kitchen/rollingpin, +/obj/item/material/knife, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aTt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aTu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aTw" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aTx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aTy" = ( +/obj/machinery/atm{ + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aTz" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aTA" = ( +/obj/structure/closet/wardrobe/xenos, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aTC" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aTD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"aTE" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTF" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"aTH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay4) +"aTI" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay4) +"aTJ" = ( +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"aTK" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTL" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTM" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTN" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aTO" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aTP" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aTQ" = ( +/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/plating, +/area/exodus/maintenance/locker) +"aTR" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTS" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/locker) +"aTT" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aTU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage" + }, +/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/exodus/hallway/primary/port) +"aTV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aTW" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aTX" = ( +/obj/item/stool/bar/padded, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aTY" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/exodus/research/misc_lab) +"aTZ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/misc_lab) +"aUa" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aUb" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aUc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aUd" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/security/prison/dorm) +"aUe" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/art) +"aUf" = ( +/obj/item/device/radio/intercom/entertainment{ + dir = 4; + pixel_x = -22 + }, +/obj/item/stool/bar/padded, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "west bump"; + pixel_x = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUg" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay4) +"aUh" = ( +/obj/machinery/computer/modular/preset/civilian, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUi" = ( +/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/plating, +/area/exodus/maintenance/locker) +"aUj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aUk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aUl" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aUm" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/tools) +"aUn" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/bridge) +"aUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUr" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aUs" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Kitchen" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUt" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/bar/padded, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUw" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUy" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUz" = ( +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"aUA" = ( +/obj/machinery/vending/phoronresearch{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"aUB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/library) +"aUC" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "office_shutter"; + name = "Office Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aUD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUH" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUJ" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"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{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aUL" = ( +/obj/effect/wallframe_spawn/reinforced/polarized{ + id = "isoA_window_tint" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/patient_a) +"aUM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"aUN" = ( +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aUO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aUP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel South"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUW" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUX" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light, +/obj/random/tech_supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aUY" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVa" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVb" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVc" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aVd" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aVf" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_airlock"; + pixel_y = 30; + tag_airpump = "nuke_shuttle_dock_pump"; + tag_chamber_sensor = "nuke_shuttle_dock_sensor"; + tag_exterior_door = "nuke_shuttle_dock_outer"; + tag_interior_door = "nuke_shuttle_dock_inner" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aVg" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "nuke_shuttle_dock_pump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aVh" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aVi" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/exodus/chapel/main) +"aVj" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVk" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVl" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVo" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research) +"aVr" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aVs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVt" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/tech) +"aVw" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Hallway"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVx" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aVy" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aVz" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aVA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aVB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aVC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aVD" = ( +/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/steel_grid, +/area/exodus/storage/tools) +"aVE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Tool Storage - Auxiliary" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVF" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/emergency2) +"aVH" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aVI" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aVJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aVK" = ( +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aVL" = ( +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVM" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVO" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVP" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aVR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVS" = ( +/obj/structure/bed/chair/wood/walnut, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aVT" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"aVU" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVV" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/chair/wood/walnut, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aVX" = ( +/obj/structure/bed/chair/wood/walnut, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aVY" = ( +/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/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aVZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"aWa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/wood/walnut, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWb" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aWd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/bar/padded, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWe" = ( +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWg" = ( +/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/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWi" = ( +/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/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hydroponics/garden) +"aWk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWl" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"aWo" = ( +/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/lino, +/area/exodus/hydroponics/garden) +"aWp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aWq" = ( +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aWr" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aWs" = ( +/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/tiled/dark, +/area/exodus/chapel/main) +"aWt" = ( +/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/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aWv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aWx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aWy" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Library Central"; + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWz" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aWB" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/destructive_analyzer, +/obj/item/stock_parts/circuitboard/protolathe, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stock_parts/circuitboard/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aWC" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aWD" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aWE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aWF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aWG" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWH" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Vacant Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/vacantoffice) +"aWJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aWK" = ( +/obj/item/stool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWL" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWM" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aWN" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWO" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWP" = ( +/obj/effect/wallframe_spawn/reinforced/polarized{ + id = "isoB_window_tint" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/patient_b) +"aWQ" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWR" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Locker Room East"; + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aWS" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aWT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/engineering/break_room) +"aWU" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/medical/psych) +"aWV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aWW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aWX" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aWY" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aWZ" = ( +/obj/structure/table/standard, +/obj/item/storage/fancy/crayons, +/obj/item/storage/fancy/crayons, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Art Supply Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aXa" = ( +/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/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aXb" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/heads/chief) +"aXc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aXd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXe" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aXf" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXg" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXh" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXi" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXj" = ( +/obj/machinery/door/morgue{ + name = "Private Study" + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/library) +"aXk" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge West" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/landmark/paperwork_spawn_exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXl" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXm" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXn" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/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, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aXo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"aXp" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aXq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aXr" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aXs" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aXt" = ( +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge East" + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/landmark/paperwork_spawn_exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/brown/three_quarters{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXv" = ( +/obj/machinery/computer/modular/preset/medical, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXw" = ( +/obj/effect/wallframe_spawn/reinforced/polarized{ + id = "isoC_window_tint" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/patient_c) +"aXx" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aXy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"aXz" = ( +/obj/structure/table/woodentable, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aXA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXB" = ( +/obj/structure/table/woodentable, +/obj/item/board, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aXD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/woodentable, +/obj/item/storage/box/checkers/chess/red, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aXE" = ( +/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 = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aXG" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge Conference Room" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"aXH" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aXK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/medical) +"aXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"aXM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aXN" = ( +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aXO" = ( +/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/blue{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXP" = ( +/obj/structure/table/gamblingtable, +/obj/item/storage/box/checkers, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aXQ" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXR" = ( +/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/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXS" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXT" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aXV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXW" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXX" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aYa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aYb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aYc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aYe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "chemcounter"; + name = "Pharmacy Counter Shutters"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + name = "Chemistry Desk" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"aYf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aYg" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_generator, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aYh" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aYi" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "nuke_shuttle_dock_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "nuke_shuttle_dock_sensor"; + pixel_y = -25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aYj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aYk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aYl" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aYm" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "nuke_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aYn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aYo" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aYp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aYq" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYr" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_eva) +"aYs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYt" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aYu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aYw" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aYy" = ( +/obj/machinery/atm{ + pixel_x = -25 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar West"; + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aYz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "office_shutter"; + name = "Office Shutters"; + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aYA" = ( +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aYB" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + id_tag = "xeno_airlock_interior"; + locked = 1; + name = "Xenobiology Internal Airlock" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"aYC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aYD" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aYE" = ( +/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, +/obj/item/tape_roll, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aYF" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/checkers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aYG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aYH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aYJ" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aYL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora_storage) +"aYM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYN" = ( +/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/exodus/bridge) +"aYO" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/vacantoffice) +"aYP" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aYQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aYR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aYS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYT" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"aYU" = ( +/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/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYV" = ( +/obj/machinery/light, +/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/newscaster{ + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYW" = ( +/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 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"aYY" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + name = "Bridge RC"; + pixel_y = -30 + }, +/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/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYZ" = ( +/obj/machinery/light, +/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/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZa" = ( +/obj/machinery/button/blast_door{ + id_tag = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 6; + pixel_y = -24 + }, +/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/machinery/light_switch{ + pixel_x = -5; + pixel_y = -23 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"aZc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aZd" = ( +/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/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZe" = ( +/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 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZh" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aZi" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"aZj" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Bridge East Entrance" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aZk" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aZl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aZm" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters, +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZo" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/marble, +/obj/machinery/cooker/cereal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aZp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment, +/obj/item/device/camera, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"aZr" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZs" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZt" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZv" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZw" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "mixvent"; + name = "Mixer Room Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"aZx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aZy" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aZz" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"aZA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZB" = ( +/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/carpet, +/area/exodus/library) +"aZC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"aZD" = ( +/obj/structure/table/woodentable, +/obj/item/paper, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZF" = ( +/obj/structure/table/woodentable, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aZG" = ( +/obj/structure/table/woodentable, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aZH" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aZI" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aZK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aZM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "kitchen"; + name = "Kitchen Shutters" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/hallway/primary/starboard) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aZP" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"aZQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aZR" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/construction) +"aZS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "surgeryobs"; + name = "Operating Theatre Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/surgeryobs) +"aZT" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aZU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/engine_eva) +"aZV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aZW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aZX" = ( +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aZY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aZZ" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"baa" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/stamp, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bab" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bac" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bad" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"bae" = ( +/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/camera/network/civilian_west{ + c_tag = "Locker Room West"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"baf" = ( +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"bag" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bah" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Shower" + }, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -5 + }, +/obj/random/soap, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/captain) +"bai" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"baj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/locker) +"bak" = ( +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"bam" = ( +/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_grid, +/area/exodus/crew_quarters/locker) +"ban" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Locker Room"; + sort_type = "Locker Room" + }, +/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/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bao" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"bap" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"baq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"bar" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"bas" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"bau" = ( +/obj/machinery/button/blast_door{ + id_tag = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4 + }, +/obj/machinery/button/mass_driver{ + id_tag = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/item/stool/padded, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"baw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bax" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bay" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Medical Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"baz" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_west) +"baA" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/medical) +"baB" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"baC" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baE" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baG" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"baH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baI" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/engineering/locker_room) +"baJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baM" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"baN" = ( +/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/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baO" = ( +/obj/machinery/door/blast/regular{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"baP" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Bridge" + }, +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baR" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/box/lights/mixed, +/obj/item/device/flashlight, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baU" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Bridge" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baW" = ( +/obj/machinery/door/airlock/glass/command{ + id_tag = "sbridgedoor"; + name = "Bridge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"baY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"baZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bba" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bbb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bbc" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbd" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bbe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bbg" = ( +/obj/structure/table/woodentable, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bbh" = ( +/obj/structure/table/marble, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"bbi" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bbk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/marble, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"bbl" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bbm" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Library"; + sort_type = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bbn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bbo" = ( +/obj/structure/table/woodentable, +/obj/item/flame/candle, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bbp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bbq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bbr" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbs" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bbt" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bbu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bbv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/device/radio/beacon, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bbw" = ( +/obj/machinery/light/small, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_north_airlock"; + master_tag = "escape_dock"; + pixel_y = 25; + tag_airpump = "escape_dock_north_pump"; + tag_chamber_sensor = "escape_dock_north_sensor"; + tag_exterior_door = "escape_dock_north_outer"; + tag_interior_door = "escape_dock_north_inner" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_dock_north_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bbx" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bby" = ( +/obj/machinery/door/blast/regular{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bbz" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "centcom_shuttle_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bbA" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bbB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bbC" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"bbD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbE" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bbF" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Vacant Office" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbG" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"bbI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"bbJ" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/locker/locker_toilet) +"bbK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "kitchen"; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/hallway/primary/starboard) +"bbL" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbM" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbP" = ( +/obj/structure/closet/secure_closet/personal, +/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/monotile, +/area/exodus/crew_quarters/locker) +"bbQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbU" = ( +/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/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bbV" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Vacant Office"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbW" = ( +/obj/machinery/light, +/obj/machinery/camera/network/exodus{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bbX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/meter, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"bbY" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/locker/locker_toilet) +"bca" = ( +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bcb" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/storage/box/donut, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bcc" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bcd" = ( +/obj/machinery/door/airlock/glass/command{ + id_tag = "sbridgedoor"; + name = "Bridge" + }, +/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/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"bce" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/xenobiology) +"bcf" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bcg" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bch" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bci" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bcj" = ( +/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/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bck" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "surgeryobs"; + name = "Operating Theatre Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/surgery) +"bcl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"bcm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bcn" = ( +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bco" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/locker) +"bcp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/storage/tools) +"bcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall/prepainted, +/area/exodus/storage/tools) +"bcr" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bcs" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/storage/box/glasses/square, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bct" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcu" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcv" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bcx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "surgeryobs2"; + name = "Operating Theatre Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/surgery2) +"bcy" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/aft) +"bcz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcA" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bcB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"bcC" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bcD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/bridge) +"bcE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bcF" = ( +/obj/machinery/button/blast_door{ + id_tag = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bcG" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bcI" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"bcJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bcK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bcL" = ( +/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/exodus/hallway/primary/starboard) +"bcM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcN" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcP" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Hydroponics Pasture South"; + dir = 8 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"bcQ" = ( +/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/steel_grid, +/area/exodus/hallway/primary/starboard) +"bcR" = ( +/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/dark, +/area/exodus/chapel/main) +"bcS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/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/techfloor/grid, +/area/exodus/chapel/main) +"bcT" = ( +/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 = 10 + }, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcV" = ( +/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/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcX" = ( +/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/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcY" = ( +/obj/structure/flora/ausbushes, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"bcZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bda" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"bdd" = ( +/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/exodus/library) +"bde" = ( +/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/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"bdf" = ( +/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/carpet, +/area/exodus/library) +"bdg" = ( +/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/carpet, +/area/exodus/library) +"bdh" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Departures East"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bdi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bdj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bdk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bdl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/chapel/main) +"bdm" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bdn" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bdo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdp" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdq" = ( +/obj/structure/hygiene/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bdr" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bds" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bdt" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bdu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/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/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bdv" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bdw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"bdx" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bdy" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "admin_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"bdz" = ( +/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bdA" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bdC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bdD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id_tag = "packageSort2" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdE" = ( +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bdF" = ( +/obj/machinery/door/firedoor, +/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/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"bdG" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Captain's Office" + }, +/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/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"bdH" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bdI" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bdJ" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdK" = ( +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bdL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/table/standard, +/obj/item/deck/cards, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"bdM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bdN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bdO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdP" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"bdQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdS" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "packageSort2" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdT" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "packageSort2" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdV" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdW" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bdX" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology/xenoflora) +"bdY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/bridge/meeting_room) +"bdZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/bridge/meeting_room) +"bea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"beb" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bec" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bed" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/captain) +"bee" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bef" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"beg" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"beh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/computer/modular/preset/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bei" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar South"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bej" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bek" = ( +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bel" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bem" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"ben" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"beo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"beq" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8; + icon_state = "warningcee" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Auxiliary Docking North"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bes" = ( +/obj/item/folder/yellow, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bet" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"beu" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -10 + }, +/obj/machinery/honey_extractor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bev" = ( +/obj/machinery/firealarm{ + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bew" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bex" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bey" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bez" = ( +/obj/item/storage/box, +/obj/structure/table/standard, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beA" = ( +/obj/structure/table/woodentable, +/obj/item/pen, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"beB" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"beC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"beD" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"beE" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"beF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"beG" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"beH" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"beI" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"beJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"beK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"beL" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"beM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/sign/warning/moving_parts{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"beN" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"beO" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"beP" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"beQ" = ( +/obj/item/stool, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beR" = ( +/obj/machinery/conveyor_switch/oneway{ + id_tag = "packageSort2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beT" = ( +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"beU" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"beV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"beW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + autoset_access = 0; + name = "Diner" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"beX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + autoset_access = 0; + name = "Diner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"beY" = ( +/obj/machinery/light{ + 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/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"beZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bfa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfb" = ( +/obj/machinery/light_switch{ + pixel_x = 16; + pixel_y = -23 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/stack/package_wrap, +/obj/item/reagent_containers/glass/rag, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bfc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bfd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bfe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bff" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Kitchen"; + name = "Kitchen RC"; + pixel_y = -30 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bfh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Patient Wing Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_wing) +"bfi" = ( +/obj/machinery/conveyor{ + dir = 1; + id_tag = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bfj" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bfk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfm" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"bfn" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfo" = ( +/obj/machinery/door/airlock/command{ + name = "Conference 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/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge/meeting_room) +"bfp" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bfr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bft" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfv" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bfw" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bfx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bfy" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Library South"; + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bfz" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bfA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bfB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bfC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + 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, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfE" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfF" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bfG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/woodentable, +/obj/item/storage/box/checkers/chess, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bfH" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bfI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfJ" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfK" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfL" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bfM" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bfN" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bfO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bfP" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bfQ" = ( +/obj/structure/sign/double/barsign, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"bfR" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bfS" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bfT" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bfU" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfV" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfW" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Warehouse"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfY" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eng_eva_outer"; + frequency = 1380; + name = "Engineering EVA External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "eng_eva_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_y = 25 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bfZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bga" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bgc" = ( +/obj/machinery/button/mass_driver{ + id_tag = "enginecore"; + name = "Emergency Core Eject"; + pixel_x = -20 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bgd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bge" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bgg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bgh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgi" = ( +/turf/unsimulated/mask, +/area/exodus/maintenance/locker) +"bgj" = ( +/obj/structure/table/standard, +/obj/item/wrapping_paper, +/obj/item/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgk" = ( +/obj/structure/closet/crate/medical, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/red{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bgl" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bgn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bgo" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/aft) +"bgp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bgq" = ( +/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/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bgr" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/aft) +"bgs" = ( +/obj/structure/table/standard, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgt" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_one) +"bgu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bgv" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bgx" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bgy" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bgz" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bgA" = ( +/obj/machinery/navbeacon/CHW, +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bgB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bgC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"bgE" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bgF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgH" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgM" = ( +/obj/machinery/button/blast_door{ + id_tag = "heads_meeting"; + name = "Security Shutters"; + pixel_y = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/plating, +/area/exodus/maintenance/locker) +"bgO" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgP" = ( +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bgQ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bgR" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bgS" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgT" = ( +/obj/machinery/door/firedoor, +/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/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"bgU" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgV" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/flasher{ + id_tag = "AI"; + pixel_y = 24 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgY" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bgZ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bha" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhb" = ( +/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/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bhe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bhg" = ( +/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/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhi" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhj" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - East" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhk" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/device/radio/intercom/private{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/custom{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom/broadcasting{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bhl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhn" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bhp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bhq" = ( +/obj/machinery/airlock_sensor{ + id_tag = "escape_dock_north_sensor"; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bhr" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_airlock"; + pixel_y = 25; + tag_airpump = "centcom_shuttle_dock_pump"; + tag_chamber_sensor = "centcom_shuttle_dock_sensor"; + tag_exterior_door = "centcom_shuttle_dock_outer"; + tag_interior_door = "centcom_shuttle_dock_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "centcom_shuttle_dock_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "centcom_shuttle_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"bhs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bhu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bhv" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Waste Disposal"; + dir = 8 + }, +/obj/item/material/ashtray/plastic{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bhw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bhx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + name = "Delivery Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bhy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/captain) +"bhz" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bhA" = ( +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bhB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Locker Room South"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bhC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/vacantoffice) +"bhD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bhE" = ( +/obj/structure/closet/crate/internals, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhF" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"bhG" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhI" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhJ" = ( +/obj/machinery/button/blast_door{ + id_tag = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhK" = ( +/obj/machinery/conveyor_switch/oneway{ + id_tag = "packageSort1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bhL" = ( +/obj/structure/table/standard, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bhM" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"bhN" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Warehouse" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhO" = ( +/obj/machinery/atmospherics/omni/mixer{ + tag_north = 1; + tag_south = 2; + tag_west = 1; + use_power = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bhP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/captain) +"bhQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bhR" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bhS" = ( +/obj/machinery/power/sensor{ + id_tag = "AI Subgrid"; + name = "Powernet Sensor - AI Subgrid" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bhT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bhU" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/donut, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bhV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bhX" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/module/power_control, +/obj/item/cell{ + maxcharge = 2000 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"bhZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bia" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bib" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bic" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"bid" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bie" = ( +/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/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bif" = ( +/obj/structure/disposalpipe/sortjunction/wildcard, +/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/plating, +/area/exodus/maintenance/locker) +"big" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bih" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bii" = ( +/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/steel_grid, +/area/exodus/hallway/primary/starboard) +"bij" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bik" = ( +/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_grid, +/area/exodus/hallway/primary/starboard) +"bil" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bim" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bin" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bio" = ( +/obj/item/hand_labeler, +/obj/item/device/assembly/timer, +/obj/item/device/eftpos{ + eftpos_name = "Bridge EFTPOS scanner" + }, +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bip" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"biq" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bir" = ( +/obj/item/folder/red, +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bis" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bit" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biu" = ( +/obj/structure/disposalpipe/segment, +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"biv" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"biw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bix" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/turret_protected/ai) +"biz" = ( +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"biA" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biC" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"biE" = ( +/obj/structure/table/woodentable, +/obj/random_multi/single_item/captains_spare_id, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"biF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biH" = ( +/obj/structure/cable{ + 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/corner/lime{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"biJ" = ( +/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 = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biK" = ( +/obj/structure/cable{ + 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/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biL" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biM" = ( +/obj/machinery/navbeacon/HOP2, +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"biN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"biO" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 32; + pixel_z = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"biP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"biQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"biR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"biS" = ( +/obj/machinery/conveyor{ + dir = 1; + id_tag = "garbage" + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"biT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/disposal) +"biU" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"biV" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"biW" = ( +/obj/structure/sign/directions/examroom, +/turf/simulated/wall/prepainted, +/area/exodus/medical/reception) +"biY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"biZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Delivery Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bja" = ( +/obj/structure/filingcabinet, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bjb" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bjc" = ( +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/requests_console{ + department = "AI"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id_tag = "AICore"; + name = "AI Maintenance Hatch"; + pixel_x = 17; + pixel_y = 25 + }, +/obj/item/device/radio/intercom/custom{ + pixel_x = -28; + pixel_y = 4 + }, +/obj/item/device/radio/intercom/private{ + pixel_x = 28; + pixel_y = 4 + }, +/obj/item/device/radio/intercom/broadcasting{ + pixel_y = 22 + }, +/obj/structure/AIcore/deactivated, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + dir = 1; + id_tag = "escape_dock_south_airlock"; + master_tag = "escape_dock"; + pixel_y = -25; + tag_airpump = "escape_dock_south_pump"; + tag_chamber_sensor = "escape_dock_south_sensor"; + tag_exterior_door = "escape_dock_south_outer"; + tag_interior_door = "escape_dock_south_inner" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_dock_south_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bje" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/device/radio/intercom/private{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom/custom{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/broadcasting{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjf" = ( +/obj/machinery/door/airlock/research{ + name = "Research Shuttle Dock" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"bjg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bji" = ( +/obj/machinery/navbeacon/Stbd, +/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_grid, +/area/exodus/hallway/primary/starboard) +"bjj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bjk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/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/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"bjl" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/emergency) +"bjm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bjn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bjo" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - East"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bjp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/disposal) +"bjq" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bjr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bjs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bjv" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjx" = ( +/obj/structure/disposalpipe/tagger/partial{ + name = "Sorting Office"; + sort_tag = "Sorting Office" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjz" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - West"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bjB" = ( +/obj/item/frame/apc, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bjC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjD" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bjF" = ( +/obj/machinery/airlock_sensor{ + id_tag = "eng_eva_sensor"; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bjG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bjH" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjI" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bjJ" = ( +/obj/item/folder/blue, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bjK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjL" = ( +/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/wood/walnut, +/area/exodus/bridge/meeting_room) +"bjM" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bjN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjO" = ( +/obj/machinery/door/window{ + name = "AI Core Door" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/flasher{ + id_tag = "AI"; + pixel_x = 22; + pixel_y = 24 + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "AI Chamber turret control"; + pixel_x = 36; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bjQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjR" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjT" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bjU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bjV" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/engineering_monitoring) +"bjW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bjX" = ( +/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/wood/walnut, +/area/exodus/crew_quarters/captain) +"bjY" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/wall/prepainted, +/area/exodus/turret_protected/ai) +"bjZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bka" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bkb" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - Central"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bkc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medicine Storage" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bke" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"bkf" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - Central East"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bkg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bkh" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bki" = ( +/obj/structure/table/standard, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bkk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/locker) +"bkl" = ( +/obj/machinery/airlock_sensor{ + id_tag = "escape_dock_south_sensor"; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bkm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/disposal) +"bkn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bko" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bkp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bkq" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "specops_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bkr" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "research_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = 25; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bkt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bku" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Locker Room Toilets"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bkv" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = -6 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = -9 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/device/camera, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bkw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bkx" = ( +/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/plating, +/area/exodus/maintenance/engineering) +"bky" = ( +/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/exodus/medical/patient_wing) +"bkz" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bkA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/workshop) +"bkB" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bkC" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bkD" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bkE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bkF" = ( +/obj/item/paper_bin{ + pixel_y = -10 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bkG" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bkH" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bkI" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bkJ" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bkK" = ( +/obj/machinery/door/window{ + dir = 4; + name = "AI Core Door" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bkL" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bkM" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "AI Core Door" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bkN" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain's Office"; + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bkO" = ( +/obj/machinery/tele_projector, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bkP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bkQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkR" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "garbage" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkS" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/disposal) +"bkU" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "research_dock_inner"; + frequency = 1380; + name = "Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"bkV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bkW" = ( +/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/plating, +/area/exodus/maintenance/locker) +"bkX" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bkY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bkZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bla" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"blb" = ( +/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/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"blc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bld" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"ble" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/maintenance/locker) +"blf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"blg" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/lime/full, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blh" = ( +/obj/effect/floor_decal/corner/lime/full, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blk" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/warning/mail_delivery, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"bln" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"blp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/storage) +"blq" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"blr" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bls" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"blt" = ( +/obj/item/device/radio/intercom/entertainment{ + pixel_y = 22 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"blu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 1; + icon_state = "corner_white_full" + }, +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"blv" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"blw" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"blx" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bly" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"blz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"blA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"blB" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"blE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Mailing Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"blG" = ( +/obj/structure/table/woodentable, +/obj/item/folder/blue, +/obj/item/stamp/captain{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"blH" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blI" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"blJ" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"blK" = ( +/obj/structure/table/woodentable, +/obj/item/pinpointer, +/obj/item/disk/nuclear, +/obj/item/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"blL" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - West"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"blM" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/emergency) +"blN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Conference Room" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"blO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/starboard) +"blP" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"blQ" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay" + }, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"blR" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"blS" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "specops_dock_airlock"; + pixel_y = 25; + 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{ + id_tag = "specops_dock_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "specops_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"blT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"blU" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blW" = ( +/obj/structure/table/glass, +/obj/machinery/reagent_temperature/cooler, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay - Chemistry" + }, +/obj/structure/table/glass, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "chemcounter"; + name = "Pharmacy Counter Lockdown Control"; + pixel_y = 25 + }, +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blZ" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/storage/box/cups, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bmb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/exit) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bme" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bmf" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Lobby Port" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmg" = ( +/obj/machinery/conveyor{ + dir = 1; + id_tag = "garbage" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bmh" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bmi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bmj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Hallway - Starboard"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bmk" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Hygiene Facilities" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_wing/washroom) +"bml" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmm" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmo" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bmq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bmr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bms" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bmt" = ( +/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/plating, +/area/exodus/maintenance/locker) +"bmu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plating, +/area/exodus/maintenance/locker) +"bmv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bmw" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Lobby Starboard" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmx" = ( +/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/exodus/research) +"bmy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom/entertainment{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bmz" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bmB" = ( +/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 = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bmC" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/bed/chair/wheelchair, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bmD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bmE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/storage/box/donut, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bmF" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bmG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/command) +"bmH" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bmI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/porta_turret{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bmJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bmK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bmL" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "eng_eva_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bmM" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bmN" = ( +/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/dark, +/area/exodus/medical/morgue) +"bmO" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + name = "Captain RC"; + pixel_x = -30 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bmP" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bmQ" = ( +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bmR" = ( +/obj/structure/table/woodentable, +/obj/item/device/eftpos{ + eftpos_name = "Captain EFTPOS scanner" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bmS" = ( +/obj/structure/table/woodentable, +/obj/item/melee/whip/chainofcommand, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random_multi/single_item/captains_spare_id, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bmT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"bmU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bmV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmX" = ( +/obj/structure/disposalpipe/segment, +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bmY" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/chemistry) +"bmZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Morgue" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bna" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bnb" = ( +/obj/machinery/light/small, +/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/plating, +/area/exodus/maintenance/research_starboard) +"bnc" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bnd" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/workshop) +"bne" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/research/robotics) +"bnf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bng" = ( +/obj/item/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/research/robotics) +"bnh" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/research/robotics) +"bni" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/reception) +"bnj" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bnk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bnl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 8 + }, +/obj/item/device/radio/intercom/entertainment{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnm" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 1 + }, +/obj/item/device/radio/intercom/entertainment{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/exam_room) +"bno" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"bnp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"bnq" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bns" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bnu" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Auxiliary Docking South" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bnv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bnw" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "captaindoor"; + name = "Office Door Control"; + pixel_x = 15; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the starboard bridge doors."; + id_tag = "sbridgedoor"; + name = "Bridge Door Control"; + pixel_x = 15; + pixel_y = 39 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bnx" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bny" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bnz" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bnA" = ( +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bnB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bnC" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bnD" = ( +/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/recharger{ + pixel_y = 4 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bnE" = ( +/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, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/substation/command) +"bnF" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bnG" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bnH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bnI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/lab) +"bnJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bnK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnL" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnM" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/emergency) +"bnN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnP" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/locker) +"bnQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnS" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnT" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id_tag = "garbage"; + name = "disposal coveyor" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnV" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnX" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bnZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"boa" = ( +/obj/structure/table/standard, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bob" = ( +/obj/structure/window/reinforced, +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"boc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bod" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"boe" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/device/flashlight, +/obj/item/clothing/mask/gas, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bof" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bog" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"boh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"boi" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"boj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bok" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bol" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bom" = ( +/obj/machinery/porta_turret, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_x = -4; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bon" = ( +/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/exodus/medical/exam_room) +"boo" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bop" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"boq" = ( +/obj/structure/table/standard, +/obj/item/autopsy_scanner, +/obj/item/scalpel, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bor" = ( +/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/plating, +/area/exodus/maintenance/substation/command) +"bos" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bot" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bou" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bov" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bow" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"box" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"boy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"boz" = ( +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"boA" = ( +/obj/item/stool, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"boC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"boD" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"boE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"boF" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"boH" = ( +/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/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/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boI" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boJ" = ( +/obj/structure/table/steel_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/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"boK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boL" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boM" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boP" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"boQ" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boR" = ( +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"boS" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - R&D Lab" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boV" = ( +/obj/item/folder/white, +/obj/structure/table/standard, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boW" = ( +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/airlock_electronics, +/obj/item/airlock_electronics, +/obj/item/cell/high, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"boX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"boY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"boZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bpa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bpb" = ( +/obj/machinery/conveyor{ + dir = 1; + id_tag = "garbage" + }, +/obj/machinery/door/blast/regular{ + id_tag = "Disposal Exit"; + name = "Disposal Exit Vent" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bpc" = ( +/obj/structure/table/standard, +/obj/item/aiModule/oxygen, +/obj/item/aiModule/oneHuman, +/obj/item/aiModule/purge, +/obj/structure/window/reinforced, +/obj/item/aiModule/antimov, +/obj/item/aiModule/teleporterOffline, +/obj/item/aiModule/robocop, +/obj/item/aiModule/paladin, +/obj/item/aiModule/corp, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/asimov, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bpd" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bpe" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_y = 30 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bpf" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bpg" = ( +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bph" = ( +/turf/unsimulated/mask, +/area/exodus/storage/emergency) +"bpi" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/emergency/oxygen, +/obj/item/tank/emergency/oxygen, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/substation/command) +"bpj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/chargebay) +"bpk" = ( +/obj/machinery/button/blast_door{ + id_tag = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bpl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"bpm" = ( +/obj/item/trash/candy, +/obj/item/trash/popcorn, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bpn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bpo" = ( +/obj/machinery/newscaster{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/item/tape_roll, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/robotics) +"bpq" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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/exodus/maintenance/research_port) +"bps" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bpt" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Sorting Office"; + sort_type = "Sorting Office" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bpw" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id_tag = "packageExternal" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpx" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bpy" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bpz" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bpA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bpB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bpC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + id_tag = "Command Subgrid"; + name = "Powernet Sensor - Command Subgrid" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bpE" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/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/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpF" = ( +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpG" = ( +/obj/structure/table/woodentable, +/obj/random_multi/single_item/captains_spare_id{ + weight = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bpH" = ( +/obj/structure/table/standard, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/latex, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bpI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/substation/command) +"bpJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpK" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bpL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI Upload - West"; + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/porta_turret{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bpN" = ( +/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/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bpO" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"bpP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bpQ" = ( +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/dropper, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bpR" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 6 + }, +/obj/item/device/scanner/spectrometer/adv, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/button/blast_door{ + id_tag = "chemwindow"; + name = "Pharmacy Windows Shutter Control"; + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bpT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bpU" = ( +/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, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bpV" = ( +/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/plating, +/area/exodus/maintenance/research_starboard) +"bpW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bpX" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bpY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bpZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bqa" = ( +/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/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bqb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bqc" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bqd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bqe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Examination room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/exam_room) +"bqf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bqg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/exodus/medical/exam_room) +"bqh" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"bqi" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"bql" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"bqm" = ( +/obj/structure/filingcabinet/chestdrawer{ + desc = "A large drawer filled with autopsy reports."; + name = "Autopsy Reports" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqo" = ( +/obj/machinery/optable, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqp" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqq" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/directions/examroom{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bqr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bqs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/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/tiled/dark, +/area/exodus/research/chargebay) +"bqt" = ( +/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/steel_grid, +/area/exodus/research/chargebay) +"bqu" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Robotics Lab" + }, +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/robotics) +"bqw" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bqx" = ( +/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/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqy" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bqz" = ( +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/head/helmet/space/capspace, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/random_multi/single_item/captains_spare_id, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqA" = ( +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqB" = ( +/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/exodus/maintenance/research_shuttle) +"bqC" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqE" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bqG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqH" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bqI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bqK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"bqM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqN" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Division Access" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bqO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bqP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/reagent_dispensers/acid{ + pixel_x = -32 + }, +/obj/machinery/r_n_d/circuit_imprinter{ + id_tag = "science" + }, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bqQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqT" = ( +/obj/structure/table/standard, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqU" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bqW" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + dir = 4; + id_tag = "cargo_bay"; + name = "cargo bay hatch controller"; + pixel_x = -30; + tag_door = "cargo_bay_door" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bqX" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bqY" = ( +/obj/structure/sign/warning/docking_area{ + pixel_y = -32 + }, +/turf/space, +/area/space) +"bqZ" = ( +/obj/machinery/mech_recharger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/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/steel_grid, +/area/exodus/research/chargebay) +"bra" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"brb" = ( +/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/plating, +/area/exodus/maintenance/engineering) +"brc" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"brd" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bre" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"brf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"brg" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"brh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/robotics) +"bri" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"brj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI Upload - East"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"brk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"brl" = ( +/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/steel_grid, +/area/exodus/quartermaster/office) +"brm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + name = "Delivery Office" + }, +/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/techfloor/grid, +/area/exodus/quartermaster/office) +"brn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bro" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hop) +"brp" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"brq" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "admin_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"brr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"brs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"brt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/vault/bolted{ + name = "AI core" + }, +/obj/machinery/door/blast/regular{ + id_tag = "AICore"; + name = "AI core maintenance hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai) +"brv" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"brw" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "packageExternal" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"brx" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bry" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"brz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"brA" = ( +/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/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"brB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"brC" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"brD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"brE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"brF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"brG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/locker) +"brH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"brI" = ( +/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, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/substation/command) +"brJ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"brK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"brL" = ( +/obj/structure/sign/warning/science{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"brM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"brN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"brO" = ( +/obj/item/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/screwdriver, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"brP" = ( +/obj/machinery/door/window/northright{ + name = "Medbay Lobby" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/item/device/radio/intercom/department/medbay, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brQ" = ( +/obj/machinery/door/window/northright{ + name = "Medbay Lobby" + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/folder/white, +/obj/item/pen, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/medical, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brU" = ( +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"brV" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"brW" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"brX" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "Pill Cabinet"; + pixel_y = -32 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/tramadol, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"brY" = ( +/obj/item/cane, +/obj/item/cane{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cane{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/storage/box/rxglasses, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"brZ" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/medical/exam_room) +"bsa" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bsb" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bsc" = ( +/obj/structure/table/rack, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/item/storage/toolbox/mechanical, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/rig/medical/equipped, +/obj/item/defibrillator/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bsd" = ( +/obj/structure/table/standard, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"bsf" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Mech Bay"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bsg" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bsh" = ( +/obj/machinery/robotic_fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"bsj" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/landmark/latejoin/cyborg, +/obj/machinery/computer/cryopod/robot{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bsl" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/flasher{ + id_tag = "AI"; + pixel_x = -22; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bsn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/captain) +"bsq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"bsr" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bss" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bst" = ( +/obj/structure/hygiene/shower{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bsu" = ( +/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/exodus/research) +"bsv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bsw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/fabricator{ + id_tag = "science" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bsx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bsy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering) +"bsz" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bsA" = ( +/obj/item/storage/toolbox/electrical, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bsB" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Sublevel Access" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bsC" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bsD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bsE" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bsF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bsG" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bsH" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bsI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bsL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bsM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bsN" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bsO" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"bsP" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bsQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bsR" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eng_eva_outer"; + frequency = 1380; + name = "Engineering EVA External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bsS" = ( +/obj/machinery/mass_driver{ + id_tag = "trash" + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = 10 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/disposal) +"bsT" = ( +/obj/structure/closet/emcloset, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsU" = ( +/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/exodus/maintenance/research_shuttle) +"bsV" = ( +/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 = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bsW" = ( +/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/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id_tag = "QMLoad3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"btb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/teleporter) +"btc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"btd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bte" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"btf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"btg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bth" = ( +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bti" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"btj" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"btk" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"btl" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel" + }, +/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, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"btm" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"btn" = ( +/obj/machinery/door/window/southright{ + name = "Virology Isolation Room Two" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"bto" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced/polarized, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hop) +"btp" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/captain) +"btq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"btr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - East Southwest"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bts" = ( +/obj/item/reagent_containers/dropper, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"btt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"btu" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"btv" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"btw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"btx" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bty" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerPort"; + name = "Medbay Doors Control"; + pixel_x = -16; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btz" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"btA" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/woodentable, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "south bump"; + pixel_y = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"btB" = ( +/obj/machinery/button/blast_door{ + id_tag = "medbayrecquar"; + name = "Medbay Entrance Lockdown Shutters Control"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/device/radio/phone/medbay{ + name = "reception emergency phone"; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_three) +"btD" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"btE" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "admin_shuttle_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"btF" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"btG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/central_three) +"btH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/research/docking) +"btI" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/device/radio/phone/medbay{ + name = "reception emergency phone" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"btK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btL" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"btM" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerStar"; + name = "Medbay Doors Control"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"btO" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"btP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"btQ" = ( +/obj/structure/displaycase, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"btR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"btS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"btT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"btU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"btV" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"btW" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"btX" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"btZ" = ( +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bua" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bub" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"buc" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/chemistry) +"bud" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bue" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"buf" = ( +/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/tiled/white, +/area/exodus/research/robotics) +"bug" = ( +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/cable_coil, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"buh" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"buj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"buk" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bul" = ( +/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/steel_grid, +/area/exodus/research/robotics) +"bum" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bun" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research) +"buo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bup" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"buq" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bur" = ( +/obj/machinery/r_n_d/protolathe, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bus" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"but" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"buu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"buv" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"buw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bux" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"buy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eng_eva_pump" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"buz" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology Southwest"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"buA" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"buB" = ( +/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/conveyor{ + dir = 1; + id_tag = "QMLoad3" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buC" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buD" = ( +/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/exodus/quartermaster/storage) +"buE" = ( +/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/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buF" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buG" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/upload/robot{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"buH" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buI" = ( +/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/steel_grid, +/area/exodus/quartermaster/storage) +"buJ" = ( +/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/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buK" = ( +/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/machinery/door/airlock/multi_tile/glass/mining{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"buL" = ( +/obj/structure/disposalpipe/tagger/partial{ + name = "Sorting Office"; + sort_tag = "Sorting Office" + }, +/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/steel_grid, +/area/exodus/quartermaster/office) +"buM" = ( +/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/exodus/quartermaster/office) +"buN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/upload/ai{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"buO" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/material/clipboard, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buP" = ( +/obj/item/stamp/cargo{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table/standard, +/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/steel_grid, +/area/exodus/quartermaster/office) +"buQ" = ( +/obj/structure/sign/warning/docking_area{ + pixel_y = 32 + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"buR" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"buS" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Lobby" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buU" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"buW" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"buX" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/recharger, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"buY" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"buZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bva" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/recharger/wallcharger{ + pixel_y = 30 + }, +/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/exodus/crew_quarters/heads/hop) +"bvb" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bvc" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bvd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bve" = ( +/obj/machinery/hologram/holopad, +/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/dark, +/area/exodus/turret_protected/ai_upload) +"bvf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bvg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bvh" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/captain) +"bvi" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bvj" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bvk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Chemistry Laboratory" + }, +/obj/structure/sign/chemistry{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bvl" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvm" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvo" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Medical Reception" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvp" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvq" = ( +/obj/machinery/door/window/eastright{ + name = "Medical Reception" + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/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/steel_grid, +/area/exodus/medical/reception) +"bvr" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"bvt" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvu" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/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{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvv" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/random/firstaid{ + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/beige/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bvw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hop) +"bvx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Examination Room" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay2) +"bvy" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay2) +"bvz" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/chargebay) +"bvA" = ( +/obj/effect/floor_decal/corner/paleblue, +/obj/structure/table/standard, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bvB" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bvC" = ( +/obj/structure/table/standard, +/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/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bvD" = ( +/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/exodus/research/robotics) +"bvE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bvF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bvG" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bvH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bvK" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/lab) +"bvL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Research and Development" + }, +/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/techfloor/grid, +/area/exodus/research/lab) +"bvM" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/lab) +"bvN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bvO" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_research) +"bvP" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/status_display, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bvQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bvS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bvT" = ( +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Server Room" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bvU" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bvV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eng_eva_pump" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bvW" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bvX" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bvY" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"bvZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwa" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwc" = ( +/obj/machinery/conveyor{ + dir = 1; + id_tag = "QMLoad3" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwe" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwg" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwh" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwi" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Cargo Bay"; + sort_type = "Cargo Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwk" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay2) +"bwl" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwm" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwn" = ( +/obj/structure/table/standard, +/obj/item/aiModule/nanotrasen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/aiModule/reset, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bwo" = ( +/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/exodus/quartermaster/office) +"bwp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk" + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bws" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwu" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Medical" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bwv" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/robotics) +"bww" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research) +"bwx" = ( +/obj/structure/table/standard, +/obj/item/aiModule/freeform, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/aiModule/protectStation, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bwy" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bwz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwA" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"bwB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwC" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bwD" = ( +/obj/machinery/smartfridge/secure/medbay, +/turf/simulated/wall/prepainted, +/area/exodus/medical/chemistry) +"bwE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/drone_fabrication) +"bwF" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bwG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hop_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = 16; + pixel_y = 28 + }, +/obj/machinery/button/windowtint{ + pixel_x = 16; + pixel_y = 38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bwI" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bwJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"bwK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bwL" = ( +/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/white, +/area/exodus/research/mixing) +"bwM" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bwN" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"bwO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"bwP" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"bwQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bwR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain's Quarters"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bwS" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwT" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Fore Starboard Corridor" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bwU" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/matches, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bwV" = ( +/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/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bwW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bwX" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bwY" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bwZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/chemical, +/obj/item/storage/box/pillbottles, +/obj/item/device/radio/headset/headset_med, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Drug Storage" + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bxd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bxe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + id_tag = "MedbayFoyerPort" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bxf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medbay Reception" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay3) +"bxg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bxh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + id_tag = "MedbayFoyerStar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bxi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"bxj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"bxk" = ( +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"bxl" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"bxm" = ( +/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/exodus/medical/medbay2) +"bxn" = ( +/obj/structure/table/woodentable, +/obj/item/device/camera, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bxo" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxq" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_upload) +"bxs" = ( +/obj/structure/table/standard, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/beige/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxt" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/bottle/antitoxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/medical, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxu" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/black/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxv" = ( +/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, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxw" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bxy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bxz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bxA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/organ_printer/flesh, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bxB" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/pen, +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics - Operational Room"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bxC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay) +"bxD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bxE" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/empty, +/obj/item/storage/firstaid/empty, +/obj/item/storage/firstaid/empty, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/obj/machinery/newscaster{ + pixel_x = 26; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bxF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay3) +"bxG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bxH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bxI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bxJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bxK" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"bxL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bxM" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_y = 30 + }, +/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/stack/material/aluminium, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bxN" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_monitoring) +"bxO" = ( +/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/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bxP" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research) +"bxQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"bxR" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bxS" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxV" = ( +/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, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bxW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxX" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxY" = ( +/obj/machinery/fabricator, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bxZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"byb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"byc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"byd" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "arrivals_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"byf" = ( +/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/exodus/quartermaster/office) +"byg" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"byh" = ( +/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/exodus/hallway/primary/central_three) +"byi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"byj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"byk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"byl" = ( +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bym" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"byn" = ( +/obj/effect/overmap/visitable/ship/landable/pod/research, +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"byo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_upload) +"byp" = ( +/obj/machinery/door/airlock/command{ + id_tag = "hopdoor"; + name = "Head of Personnel" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/hop) +"byq" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"byr" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bys" = ( +/obj/machinery/turretid/stun{ + control_area = "\improper AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"byt" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"byu" = ( +/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/exodus/medical/chemistry) +"byv" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/medical/medbay) +"byw" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/security/prison/dorm) +"byx" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerPort"; + name = "Medbay Doors Control"; + pixel_x = -24; + pixel_y = 26 + }, +/obj/machinery/computer/guestpass{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"byy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byz" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engi_shuttle) +"byB" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byC" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byD" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerStar"; + name = "Medbay Doors Control"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byF" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"byG" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 28 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"byH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"byI" = ( +/mob/living/simple_animal/friendly/corgi/Ian, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"byJ" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byK" = ( +/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/exodus/medical/medbay2) +"byL" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byM" = ( +/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 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/teleporter) +"byO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byP" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 30 + }, +/obj/random/soap, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"byQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byR" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byS" = ( +/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/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"byU" = ( +/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{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"byV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"byW" = ( +/obj/machinery/light/small, +/obj/structure/mopbucket, +/obj/item/mop, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"byX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"byY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"byZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bza" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bzb" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"bzc" = ( +/obj/structure/table/standard, +/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/organ/internal/posibrain, +/obj/item/device/robotanalyzer, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bzd" = ( +/obj/machinery/camera/network/security{ + c_tag = "Engineering Airlock Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eng_eva_pump" + }, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bze" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bzf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bzg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bzh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bzi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bzj" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bzl" = ( +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bzm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzt" = ( +/obj/machinery/navbeacon/HOP, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bzu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzv" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_x = -30 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Office"; + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stack/material/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/aluminium/fifty, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzw" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzx" = ( +/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/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzz" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bzA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bzB" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bzC" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bzD" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bzE" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bzF" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/floor_decal/corner/purple/three_quarters, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bzG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bzH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bzI" = ( +/obj/item/clothing/glasses/welding/superior, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/closet/secure_closet/RD, +/obj/item/paper/monitorkey, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bzJ" = ( +/obj/structure/closet/secure_closet/hop, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bzK" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "cargo_bay_door"; + frequency = 1380; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bzL" = ( +/obj/item/ore/coal{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ore/iron, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bzM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bzN" = ( +/obj/machinery/power/apc/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"bzO" = ( +/obj/machinery/computer/shuttle_control/explore/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"bzP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bzQ" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/tele_pad, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bzR" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bzS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bzT" = ( +/obj/structure/closet/secure_closet/psychiatry, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"bzU" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bzV" = ( +/obj/structure/table/rack, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bzW" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bzX" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bzY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bAa" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bAb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bAc" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/firstaid, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAd" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bAe" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/random/firstaid{ + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAg" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/firstaid, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_server_room) +"bAi" = ( +/obj/machinery/computer/shuttle_control/research{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bAj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_cyborg_station) +"bAk" = ( +/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAl" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Medbay"; + sort_type = "Medbay" + }, +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bAm" = ( +/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/exodus/medical/medbay) +"bAn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/white, +/area/exodus/medical/medbay3) +"bAo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Equipment" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bAp" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bAq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bAr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Equipment" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay2) +"bAs" = ( +/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/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/medical) +"bAt" = ( +/obj/structure/cable/green{ + 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 = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bAu" = ( +/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/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAv" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAy" = ( +/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_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAz" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/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/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAA" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -5; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bAF" = ( +/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/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + id_tag = "Medbay Subgrid"; + name = "Powernet Sensor - Medbay Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bAG" = ( +/obj/structure/disposalpipe/segment, +/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/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bAH" = ( +/obj/structure/morgue, +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAI" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAJ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAK" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAM" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAN" = ( +/obj/item/stool/padded, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAO" = ( +/obj/structure/table/standard, +/obj/item/crowbar, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bAQ" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAR" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAS" = ( +/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/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAT" = ( +/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 = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAU" = ( +/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/exodus/research) +"bAV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bAW" = ( +/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, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bAY" = ( +/obj/machinery/light, +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bAZ" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/clothing/head/soft/orange, +/obj/item/clothing/shoes/sandal, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bBa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bBb" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bBc" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/clothing/suit/apron/overalls, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bBd" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/emergency) +"bBe" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"bBf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bBg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bBh" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bBi" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bBj" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bBk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bBl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bBn" = ( +/obj/machinery/navbeacon/QM1, +/obj/structure/closet/secure_closet/cargotech, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bBo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bBp" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"bBq" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/folder/yellow, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bBr" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/unary_atmos/heater, +/obj/item/stock_parts/circuitboard/unary_atmos/cooler{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bBs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bBt" = ( +/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_grid, +/area/exodus/quartermaster/office) +"bBu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "cargo_bay_door"; + frequency = 1380; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bBv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + id_tag = "cargodoor"; + name = "Cargo Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bBw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bBx" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bBy" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bBz" = ( +/obj/structure/closet/secure_closet/hop2, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bBA" = ( +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/device/megaphone, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bBB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bBC" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/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/techfloor/grid, +/area/exodus/turret_protected/ai_server_room) +"bBE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bBF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload Foyer"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bBG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bBH" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/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/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_cyborg_station) +"bBI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bBJ" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Substation" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bBM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/stool, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bBN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bBO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bBP" = ( +/obj/machinery/message_server, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bBQ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bBR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/teleporter) +"bBS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bBT" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bBU" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bBV" = ( +/obj/item/modular_computer/telescreen/preset/generic{ + name = "north bump"; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bBW" = ( +/obj/structure/table/standard, +/obj/item/roller{ + pixel_y = 1 + }, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bBX" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bBY" = ( +/obj/machinery/light{ + dir = 4 + }, +/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, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bBZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bCa" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bCb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bCc" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bCd" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bCe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Cloning Laboratory" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bCf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Genetics Laboratory" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bCg" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bCh" = ( +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCi" = ( +/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/exodus/research) +"bCj" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCk" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCl" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bCm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCn" = ( +/obj/machinery/navbeacon/QM2, +/obj/structure/closet/secure_closet/cargotech, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bCo" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"bCp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/genetics) +"bCq" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for a door to space."; + id_tag = "xenobioout6"; + name = "Containment Release Switch"; + pixel_x = 24; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bCr" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"bCs" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bCt" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -23 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bCu" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bCv" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bCw" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bCx" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Mining Dock"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bCy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/aluminium/fifty, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"bCA" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "QM Office"; + sort_type = "QM Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bCB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bCC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bCD" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"bCE" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bCF" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"bCG" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id_tag = "QMLoad" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bCH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bCI" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bCJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/docking) +"bCK" = ( +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bCL" = ( +/obj/machinery/navbeacon/Research, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research) +"bCM" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/storage/belt/utility, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bCN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bCO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bCP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bCQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bCR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hop_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = 26; + pixel_y = 17 + }, +/obj/machinery/button/windowtint{ + pixel_x = 36; + pixel_y = 18 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "hopdoor"; + name = "Office Door Control"; + pixel_x = 26; + pixel_y = -17 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCS" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/machinery/computer/account_database{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCU" = ( +/obj/item/folder/blue, +/obj/item/stamp/denied, +/obj/item/device/eftpos{ + eftpos_name = "HoP EFTPOS scanner" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bCW" = ( +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bCX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bCY" = ( +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bDa" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/item/wrench, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Cryogenics" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bDb" = ( +/obj/structure/closet/crate{ + name = "Camera Assembly Crate" + }, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bDc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bDd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bDg" = ( +/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/exodus/teleporter) +"bDh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bDi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_port) +"bDj" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"bDk" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bDl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/white, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bDm" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Emergency Kit" + }, +/obj/machinery/door/firedoor, +/obj/item/storage/toolbox/emergency, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/bodybag/cryobag, +/obj/item/device/radio{ + name = "medbay emergency radio link" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bDn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medicine Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bDo" = ( +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bDp" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bDq" = ( +/obj/structure/table/standard, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/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/clothing/glasses/hud/health, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bDr" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Equipment Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bDs" = ( +/obj/structure/table/standard, +/obj/machinery/light, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bDt" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/sleeper) +"bDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bDv" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "Pill Cabinet" + }, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/inaprovaline, +/turf/simulated/wall/prepainted, +/area/exodus/medical/sleeper) +"bDw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bDx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"bDy" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bDA" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bDB" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bDC" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 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/exodus/research) +"bDE" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bDF" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Research"; + sort_type = "Research" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bDG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bDH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bDI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bDJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/cryo) +"bDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDL" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bDM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Division West" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bDP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server 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, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bDQ" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "research_shuttle_hatch"; + frequency = 1380; + name = "Shuttle Hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_research) +"bDR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bDS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bDT" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/research/server) +"bDU" = ( +/obj/structure/sign/warning/secure_area, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research) +"bDV" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bDW" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bDX" = ( +/obj/item/stack/material/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 3 + }, +/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/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/server_room{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/server) +"bEa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bEb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/stock_parts/circuitboard/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bEc" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bEd" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Shuttle Dock"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bEe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bEf" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bEg" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEh" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/obj/machinery/status_display/supply_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEi" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEj" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEl" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEm" = ( +/obj/machinery/navbeacon/QM3, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/bot/mulebot{ + suffix = "#1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_shuttle) +"bEo" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "toxin_test_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -20; + pixel_y = -20 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bEp" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEq" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_upload_foyer) +"bEs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/structure/noticeboard{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEu" = ( +/obj/machinery/atm{ + pixel_x = -28 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bEv" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bEw" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bEx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bEy" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - HoP's Office"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bEA" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEB" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bEE" = ( +/obj/structure/table/standard, +/obj/prefab/hand_teleporter, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEF" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEG" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Teleporter"; + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/crowbar, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEH" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEI" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bEJ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "medbayquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bEK" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEL" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Emergency Entrance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bEP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEQ" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bES" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay3) +"bET" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bEU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"bEV" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bEW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bEX" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bEY" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bEZ" = ( +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bFa" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Lab"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bFb" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "cargo_bay_door"; + frequency = 1380; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bFc" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bFd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/exodus/medical/cryo) +"bFe" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/frame/apc, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bFf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/camera_assembly, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bFg" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "RD Office"; + sort_type = "RD Office" + }, +/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/plating, +/area/exodus/maintenance/research_port) +"bFh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Research" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/genetics) +"bFi" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFj" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bFk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bFl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bFp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_shuttle) +"bFs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFv" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_server_room) +"bFw" = ( +/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/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFy" = ( +/obj/machinery/door/airlock/maintenance, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_shuttle) +"bFz" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFA" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Port - West"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bFC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bFD" = ( +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bFE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bFG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bFH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/storage) +"bFI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFJ" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bFK" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "east bump"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bFL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFN" = ( +/obj/structure/disposalpipe/sortjunction/untagged{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bFO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bFQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Research" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"bFR" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFS" = ( +/obj/machinery/door/window/southright{ + name = "Toxins Launcher" + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Toxins Launcher" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + 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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bFX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bFY" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "research_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"bFZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + id_tag = "cargodoor"; + name = "Mining Dock" + }, +/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/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"bGa" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hor) +"bGb" = ( +/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/exodus/maintenance/research_shuttle) +"bGc" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bGd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bGe" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bGf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bGg" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "tox_airlock_control"; + pixel_x = -24; + tag_airpump = "tox_airlock_pump"; + tag_chamber_sensor = "tox_airlock_sensor"; + tag_exterior_door = "tox_airlock_exterior"; + tag_interior_door = "tox_airlock_interior" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/tvalve/bypass{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bGh" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Primary Tool Storage"; + sort_type = "Primary Tool Storage" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGi" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/qm) +"bGj" = ( +/obj/structure/disposalpipe/segment{ + 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/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGk" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGl" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGm" = ( +/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" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"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, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bGr" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bGs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bGt" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"bGu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Southwest"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bGv" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/qm) +"bGw" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Messaging Server" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_server_room) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/highsecurity{ + name = "Cyborg Station" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_cyborg_station) +"bGy" = ( +/obj/machinery/door/airlock/multi_tile/glass/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bGz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bGA" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bGB" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_three) +"bGC" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI - Messaging Server"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bGD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bGE" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/command{ + c_tag = "AI - Cyborg Station"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bGF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bGG" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Chemistry"; + sort_type = "Chemistry" + }, +/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 = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bGI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bGJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bGK" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bGL" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bGM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + name = "Medbay RC"; + pixel_y = 30 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bGN" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bGO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/white, +/area/exodus/medical/medbay2) +"bGP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bGQ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bGR" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bGT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/simple/hidden/supply{ + dir = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bGV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Cloning Laboratory" + }, +/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/techfloor/grid, +/area/exodus/medical/cryo) +"bGW" = ( +/obj/structure/disposalpipe/junction{ + dir = 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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bGX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bGY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Genetics Laboratory" + }, +/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/techfloor/grid, +/area/exodus/medical/genetics) +"bGZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHa" = ( +/obj/item/frame/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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 = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bHe" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "tox_airlock_pump" + }, +/obj/machinery/air_sensor{ + id_tag = "toxins_mixing_interior"; + pixel_x = -8; + pixel_y = -18 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bHf" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bHg" = ( +/obj/machinery/navbeacon/QM4, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/bot/mulebot{ + suffix = "#1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bHi" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bHj" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient A"; + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bHk" = ( +/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/exodus/research) +"bHl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bHm" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research) +"bHn" = ( +/obj/machinery/door/firedoor, +/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/exodus/research) +"bHo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bHp" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/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/grid, +/area/exodus/research/docking) +"bHq" = ( +/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/tiled/white, +/area/exodus/research) +"bHr" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"bHs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHt" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_4_berth_hatch"; + frequency = 1380; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/cargo) +"bHu" = ( +/obj/machinery/door/airlock/glass/research{ + autoclose = 0; + id_tag = "tox_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock" + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bHv" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHw" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHx" = ( +/obj/machinery/airlock_sensor{ + id_tag = "research_dock_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "research_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"bHy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Shuttle Dock Maintainance" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + dir = 8; + id_tag = "research_dock_airlock"; + pixel_x = 25; + tag_airpump = "research_dock_pump"; + tag_chamber_sensor = "research_dock_sensor"; + tag_exterior_door = "research_dock_outer"; + tag_interior_door = "research_dock_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"bHA" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bHB" = ( +/obj/machinery/mineral/unloading_machine, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bHC" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bHD" = ( +/obj/structure/disposalpipe/segment, +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bHE" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_x = -30; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bHF" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bHG" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Miscellaneous Test Chamber"; + network = list("Research","Miscellaneous Reseach") + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bHH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/machinery/button/windowtint{ + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "qmdoor"; + name = "office door control"; + pixel_x = 15; + pixel_y = -25 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the cargo doors."; + id_tag = "cargodoor"; + name = "cargo door control"; + pixel_x = 15; + pixel_y = -34 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bHI" = ( +/obj/structure/cable{ + 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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHJ" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bHK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHL" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHM" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bHN" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHO" = ( +/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/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_three) +"bHP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bHQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - South Southwest" + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHU" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHY" = ( +/obj/machinery/disposal, +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bHZ" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - South Southeast" + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bIa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/xenobiology) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bIc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bId" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIe" = ( +/obj/machinery/atm{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIf" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Southeast" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIg" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bIi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + opacity = 0 + }, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bIj" = ( +/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, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/paleblue, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bIk" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 11 + }, +/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/tiled/white, +/area/exodus/medical/medbay) +"bIl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIm" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bIn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIo" = ( +/obj/structure/sign/goldenplaque{ + desc = "Done No Harm."; + name = "Best Doctor 2552"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Equipment Storage Hallway"; + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bIq" = ( +/obj/machinery/door/airlock/research{ + name = "Research Shuttle Dock" + }, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/research/docking) +"bIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIs" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_4_berth"; + pixel_x = -25; + pixel_y = 25; + tag_door = "escape_pod_4_berth_hatch" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bIu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bIv" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bIw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/research_port) +"bIx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/server) +"bIy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bIz" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bIA" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bIB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bIC" = ( +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/cryo) +"bID" = ( +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bIE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc/critical{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bIG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bIH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bII" = ( +/obj/structure/disposalpipe/segment, +/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/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bIJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/storage) +"bIK" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/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/exodus/maintenance/engineering) +"bIL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bIM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bIN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bIO" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bIP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bIQ" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_cyborg_station) +"bIR" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bIS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bIT" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bIU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bIV" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bIW" = ( +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/obj/structure/table/steel, +/obj/item/crowbar/brace_jack, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bIX" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bIY" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bIZ" = ( +/obj/effect/floor_decal/corner/brown/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJa" = ( +/obj/item/folder/yellow, +/obj/structure/table/standard, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJb" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJc" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJd" = ( +/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/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJe" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJf" = ( +/obj/item/material/clipboard, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stamp/denied, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJg" = ( +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/device/eftpos{ + eftpos_name = "Quartermaster EFTPOS scanner" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJh" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bJi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo - Quartermaster's Office"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bJk" = ( +/obj/machinery/navbeacon/QM, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJl" = ( +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJm" = ( +/obj/structure/disposalpipe/segment, +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJn" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJp" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJq" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJr" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJs" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJt" = ( +/obj/machinery/hologram/holopad, +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJu" = ( +/obj/machinery/navbeacon/AIW, +/obj/structure/disposalpipe/segment, +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJv" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/hallway/primary/central_three) +"bJw" = ( +/obj/machinery/navbeacon/AIE, +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJx" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJy" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bJA" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"bJB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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_grid, +/area/exodus/hallway/primary/central_two) +"bJD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bJE" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/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" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bJF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/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/techfloor/grid, +/area/exodus/maintenance/research_port) +"bJG" = ( +/obj/machinery/navbeacon/CHE, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bJH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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_grid, +/area/exodus/hallway/primary/central_two) +"bJI" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bJJ" = ( +/obj/structure/table/standard, +/obj/item/defibrillator/loaded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bJK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Robotics Lab" + }, +/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/techfloor/grid, +/area/exodus/research/robotics) +"bJL" = ( +/obj/machinery/button/blast_door{ + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + pixel_x = 26; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bJM" = ( +/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/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bJN" = ( +/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/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bJO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "CMO's Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/cmo) +"bJP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bJQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bJR" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bJT" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bJU" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bJV" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/light, +/obj/machinery/vending/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bJW" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bJX" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bJY" = ( +/obj/machinery/light, +/obj/machinery/constructable_frame/computerframe, +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bJZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 26 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"bKa" = ( +/obj/machinery/alarm/server{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bKb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Server Room"; + opacity = 1 + }, +/obj/machinery/door/window/eastleft{ + name = "Server Room" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/server) +"bKc" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bKe" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/server_room{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/server) +"bKf" = ( +/obj/item/frame/light, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bKg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/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, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/cargo) +"bKh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/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/techfloor/grid, +/area/exodus/maintenance/research_port) +"bKi" = ( +/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/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bKj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bKk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bKl" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bKm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bKn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bKo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bKp" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKq" = ( +/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/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKr" = ( +/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/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKs" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/test_area) +"bKt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/test_area) +"bKu" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/test_area) +"bKv" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bKy" = ( +/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/steel_grid, +/area/exodus/hallway/primary/starboard) +"bKz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/white, +/area/exodus/research/xenobiology/xenoflora) +"bKB" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Research" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology/xenoflora) +"bKC" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bKD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bKE" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bKF" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bKG" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/engineering/engineering_monitoring) +"bKH" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "cargo_mining_conveyor" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bKI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8; + icon_state = "warningcorner" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bKK" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bKL" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKN" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKP" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKS" = ( +/obj/structure/disposalpipe/segment, +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKT" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bKV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bKW" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bKX" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLa" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bLb" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -32; + pixel_z = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = -32; + pixel_z = -8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLf" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bLg" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Janitor Closet"; + sort_type = "Janitor Closet" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLi" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bLk" = ( +/obj/effect/floor_decal/corner/purple, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bLl" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"bLm" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bLn" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engineering_monitoring) +"bLo" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/genetics/cloning) +"bLp" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bLq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLr" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"bLs" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "EMT Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bLu" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bLv" = ( +/obj/machinery/atmospherics/unary/heater{ + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"bLw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bLy" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bLz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bLA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLC" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLE" = ( +/obj/machinery/constructable_frame/computerframe, +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLF" = ( +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLG" = ( +/obj/structure/window/reinforced, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLI" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bLJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology) +"bLK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bLL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bLM" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "eng_eva_airlock"; + name = "Engineering Airlock Console"; + pixel_y = 25; + tag_airpump = "eng_eva_pump"; + tag_chamber_sensor = "eng_eva_sensor"; + tag_exterior_door = "eng_eva_outer"; + tag_interior_door = "eng_eva_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/plating, +/area/exodus/maintenance/research_shuttle) +"bLO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/button/blast_door{ + id_tag = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -7; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bLP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bLQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bLR" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/item/stool/padded, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bLS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bLT" = ( +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bLU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bLV" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_y = 22 + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bLW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bLX" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bLZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bMb" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/stock_parts/circuitboard/teleporter, +/obj/item/stock_parts/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bMc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bMd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bMe" = ( +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bMf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bMg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMh" = ( +/obj/machinery/mineral/stacking_machine{ + input_turf = 1; + output_turf = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bMi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + 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/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMm" = ( +/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 = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/mining{ + id_tag = "qmdoor"; + name = "Quartermaster" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/qm) +"bMo" = ( +/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/exodus/quartermaster/qm) +"bMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bMq" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bMr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bMs" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + dir = 8; + id_tag = "mining_dock_airlock"; + pixel_x = 25; + pixel_y = -5; + tag_airpump = "mining_dock_pump"; + tag_chamber_sensor = "mining_dock_sensor"; + tag_exterior_door = "mining_dock_outer"; + tag_interior_door = "mining_dock_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "mining_dock_sensor"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/quartermaster/miningdock) +"bMt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bMu" = ( +/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/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bMv" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bMw" = ( +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"bMx" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/random/medical, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -22 + }, +/obj/item/taperoll/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bMy" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bMz" = ( +/obj/machinery/button/blast_door{ + id_tag = "acutesep"; + name = "Acute Separation Shutters"; + pixel_y = -25 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay EMT Storage"; + dir = 1 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bMA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bMB" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Starboard Corridor"; + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bMC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bMD" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay2) +"bMF" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/mask/gas, +/obj/item/clothing/accessory/stethoscope, +/obj/item/storage/belt/medical, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/flashlight/pen, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bMG" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bMH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Monitoring Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engineering_monitoring) +"bMI" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/sublevel_access) +"bMJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "staffroom"; + name = "Staff Room Shutters Control"; + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/medbreak) +"bML" = ( +/obj/machinery/washing_machine, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Break Room" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMM" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMN" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eng_eva_inner"; + frequency = 1380; + name = "Engineering EVA Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bMO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/misc_lab) +"bMP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bMQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase/manuals/medical, +/obj/item/book/manual/stasis, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMR" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/item/book/manual/medical_diagnostics_manual{ + pixel_y = 7 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/phone/medbay{ + name = "break room emergency phone" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMS" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/atmos_control) +"bMT" = ( +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bMU" = ( +/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 = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bMV" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bMW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bMX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bMY" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bMZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/research{ + c_tag = "Research Division Central"; + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bNa" = ( +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"bNb" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bNc" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bNd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bNe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bNf" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bNg" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "mining_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor, +/area/exodus/quartermaster/miningdock) +"bNh" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bNj" = ( +/obj/machinery/door/airlock/external{ + name = "Toxins Test Chamber" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bNk" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bNl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bNm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Test Chamber North"; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bNn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/filemanager{ + icon_state = "computer"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bNp" = ( +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"bNq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bNr" = ( +/obj/effect/paint_stripe/brown, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_mining) +"bNs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bNt" = ( +/obj/structure/disposalpipe/segment, +/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/steel_grid, +/area/exodus/quartermaster/miningdock) +"bNu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"bNv" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bNw" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/cargo) +"bNx" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/cargo) +"bNy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/tech) +"bNz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNB" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"bNC" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/stock_parts/circuitboard/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bND" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bNE" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bNF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/aft) +"bNG" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster's Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNH" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/material/coin/silver{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/material/coin/silver, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNI" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNJ" = ( +/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/steel_grid, +/area/exodus/hallway/primary/aft) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bNL" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNM" = ( +/obj/structure/closet/jcloset, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNN" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNO" = ( +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera/network/security{ + c_tag = "Custodial Closet" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bNQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bNR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bNT" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bNU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/engineering) +"bNV" = ( +/obj/item/camera_assembly, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bNW" = ( +/obj/machinery/door/window/westright{ + name = "Janitoral Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNX" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNY" = ( +/obj/machinery/navbeacon/Janitor, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/janitor) +"bNZ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acutesep"; + name = "Acute Separation Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bOa" = ( +/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/exodus/medical/medbay) +"bOb" = ( +/obj/machinery/door/airlock/maintenance, +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"bOc" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bOd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "CMO's Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/cmo) +"bOe" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bOf" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bOg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "CMO's Office" + }, +/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/techfloor/grid, +/area/exodus/crew_quarters/heads/cmo) +"bOh" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bOi" = ( +/obj/structure/disposalpipe/segment, +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bOj" = ( +/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/white, +/area/exodus/medical/medbay2) +"bOk" = ( +/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 = 10 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOl" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Staff Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bOm" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOn" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Starboard Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bOp" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOr" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOs" = ( +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOt" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOy" = ( +/obj/structure/table/standard, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOz" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bOA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bOB" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bOC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bOD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bOE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bOF" = ( +/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/white, +/area/exodus/research) +"bOG" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/scientist, +/obj/item/tank/air, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOH" = ( +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOI" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - Central West" + }, +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bOJ" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOK" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/megaphone, +/obj/item/stamp/rd, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bOL" = ( +/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/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bOM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/security{ + c_tag = "Engineering - Technical Storage" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bON" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bOO" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/mixing) +"bOP" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/prepainted, +/area/exodus/research/test_area) +"bOQ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOR" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bOS" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor, +/area/exodus/construction) +"bOT" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/cryo) +"bOU" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 6; + tag_west = 2; + use_power = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/omni/mixer{ + tag_east = 1; + tag_east_con = 0.5; + tag_south = 1; + tag_south_con = 0.5; + tag_west = 2; + use_power = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOX" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/maintenance/cargo) +"bOY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bOZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/exodus/maintenance/cargo) +"bPa" = ( +/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/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bPb" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "mining_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bPc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bPd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/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/techfloor/grid, +/area/exodus/medical/virology/access) +"bPe" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/exodus/construction) +"bPf" = ( +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPi" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bPj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bPk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"bPl" = ( +/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/white, +/area/exodus/medical/virology/access) +"bPm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bPn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/aft) +"bPp" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bPq" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bPr" = ( +/obj/item/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPs" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPt" = ( +/turf/simulated/wall/prepainted, +/area/exodus/janitor) +"bPu" = ( +/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/exodus/janitor) +"bPv" = ( +/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/tiled/steel_grid, +/area/exodus/janitor) +"bPw" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Room B"; + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bPx" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bPy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/starboardsolar) +"bPz" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPA" = ( +/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/tiled/steel_grid, +/area/exodus/janitor) +"bPB" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bPD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/button/blast_door{ + id_tag = "acutesep"; + name = "Acute Separation Shutters"; + pixel_y = 25 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Acute" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bPE" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + name = "Acute Treatment" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bPF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -9 + }, +/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/medbay{ + c_tag = "Medbay Port Corridor"; + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bPG" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -9 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + name = "Chief Medical Officer RC"; + pixel_x = -34; + pixel_y = 2 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay - CMO's Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPH" = ( +/obj/item/device/radio{ + name = "medbay emergency radio link" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPI" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/device/megaphone, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPJ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bPL" = ( +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bPM" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPN" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPO" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/research_port) +"bPP" = ( +/obj/machinery/recharger, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPQ" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPR" = ( +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPS" = ( +/obj/machinery/sparker{ + id_tag = "Xenobio"; + pixel_x = -25 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPU" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + icon_state = "map_injector"; + id_tag = "n2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPV" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/machinery/cell_charger, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPW" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"bPX" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bPY" = ( +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bPZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_shuttle) +"bQa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Monitoring Room"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bQb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Waste to Scrubbers" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQg" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQh" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQi" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQj" = ( +/obj/item/module/power_control, +/obj/item/airlock_electronics, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQk" = ( +/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/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQm" = ( +/obj/machinery/button/mass_driver{ + id_tag = "toxinsdriver"; + pixel_y = 24 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Launch Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQn" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQo" = ( +/obj/machinery/button/blast_door{ + id_tag = "mixvent"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5 + }, +/obj/machinery/button/ignition{ + id_tag = "mixingsparker"; + pixel_x = -25; + pixel_y = -5 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engineering) +"bQq" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bQr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bQs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bQt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bQu" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"bQv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bQw" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "HoP Office"; + sort_type = "HoP Office" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bQx" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/plating, +/area/exodus/maintenance/cargo) +"bQy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/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/techfloor/grid, +/area/exodus/medical/virology/access) +"bQz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/white, +/area/exodus/medical/virology/access) +"bQB" = ( +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/table/steel, +/obj/item/device/scanner/plant, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQC" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/tech) +"bQD" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bQE" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/insulated, +/obj/item/device/t_scanner, +/obj/item/clothing/glasses/meson, +/obj/item/device/multitool, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQF" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/yellow/full, +/obj/machinery/vending/wallmed1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bQG" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bQH" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQI" = ( +/obj/machinery/camera/network/security{ + c_tag = "Engineering - Secure Technical Storage" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQJ" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/computer/tesla_link, +/obj/item/stock_parts/computer/network_card/advanced, +/obj/item/stock_parts/computer/nano_printer, +/obj/item/stock_parts/computer/hard_drive, +/obj/item/stock_parts/computer/card_slot, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/computer/processor_unit, +/obj/item/stock_parts/computer/ai_slot, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQK" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQL" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bQM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bQN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bQO" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + pixel_y = -29 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQP" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQQ" = ( +/obj/structure/janitorialcart, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQS" = ( +/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/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQT" = ( +/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, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQU" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQW" = ( +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22; + pixel_y = -32 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bQZ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bRb" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "acute2"; + name = "Acute Privacy Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bRc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "cmooffice"; + name = "CMO Privacy Shutters"; + pixel_x = 38; + pixel_y = 21 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control switch for the CMO's office."; + id_tag = "cmodoor"; + name = "CMO Office Door Control"; + pixel_x = 28; + pixel_y = 21 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -15; + pixel_y = 38 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "medbayquar"; + name = "Medbay Emergency Lockdown Control"; + pixel_x = -15; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/keycard_auth{ + pixel_x = 16; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bRd" = ( +/mob/living/simple_animal/friendly/cat/fluff/Runtime, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bRe" = ( +/obj/item/folder/white{ + pixel_y = 10 + }, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stamp/cmo, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bRf" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bRg" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bRh" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 36 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id_tag = "isoA_window_tint"; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bRi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bRj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_a) +"bRk" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bRl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 36 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id_tag = "isoB_window_tint"; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bRm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bRn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_b) +"bRo" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bRp" = ( +/obj/structure/table/standard, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bRq" = ( +/obj/machinery/door/window/eastright{ + name = "Engineering Delivery" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bRr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bRs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bRt" = ( +/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/white, +/area/exodus/research) +"bRu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRv" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bRw" = ( +/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 = 5 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRy" = ( +/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/atmospherics/binary/pump{ + dir = 4; + name = "Heater to Waste" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRz" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Heated to Waste" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRB" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRE" = ( +/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/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRG" = ( +/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{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRJ" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bRL" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bRM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bRR" = ( +/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/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bRS" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bRT" = ( +/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" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRV" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/item/rig/industrial/equipped, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bRW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bRX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bRY" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bRZ" = ( +/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/plating, +/area/exodus/storage/tech) +"bSa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bSb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bSc" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bSd" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bSe" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bSf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Aft"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bSg" = ( +/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/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bSh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bSi" = ( +/obj/machinery/papershredder, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bSj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bSk" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bSl" = ( +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bSm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bSn" = ( +/obj/machinery/button/blast_door{ + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + pixel_x = -6; + pixel_y = -25 + }, +/obj/machinery/button/blast_door{ + id_tag = "acute2"; + name = "Acute Treatment Privacy Shutters"; + pixel_x = 6; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bSo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bSp" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bSq" = ( +/obj/machinery/light, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bSr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bSs" = ( +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bSu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bSv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSw" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSx" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Examination Room" + }, +/obj/structure/bed/chair/wheelchair, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bSz" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bSA" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bSB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/structure/curtain/open/privacy, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"bSC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bSD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bSE" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Room C"; + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"bSF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bSG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bSH" = ( +/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/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bSI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bSJ" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bSK" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/crate/solar, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bSL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSM" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bSN" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSO" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSQ" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bST" = ( +/obj/structure/dispenser, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/break_room) +"bSV" = ( +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSW" = ( +/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/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bSX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Launch Room Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bSY" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"bSZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bTa" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bTb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bTc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bTd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bTh" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bTi" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bTj" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bTk" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Toxins Lab" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"bTl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/medical{ + name = "Hygiene Facilities" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bTm" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"bTn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bTo" = ( +/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/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bTp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bTq" = ( +/obj/structure/disposalpipe/segment, +/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/steel_grid, +/area/exodus/hallway/primary/aft) +"bTr" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/tech) +"bTs" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bTt" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bTu" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bTw" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bTx" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bTy" = ( +/obj/machinery/door/firedoor, +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTz" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTA" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"bTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bTD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bTE" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bTF" = ( +/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/exodus/maintenance/engineering) +"bTG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTH" = ( +/obj/structure/table/standard, +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bTI" = ( +/obj/structure/iv_drip, +/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/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bTJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay4) +"bTK" = ( +/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/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bTL" = ( +/obj/structure/table/standard, +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bTM" = ( +/obj/structure/iv_drip, +/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/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bTN" = ( +/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/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bTO" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bTP" = ( +/obj/machinery/shieldwallgen{ + anchored = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bTQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bTR" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bTS" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/southright{ + name = "Test Chamber" + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Test Chamber" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bTT" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/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/plating, +/area/exodus/maintenance/medbay) +"bTU" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/southleft{ + name = "Test Chamber" + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bTW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bTX" = ( +/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/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bTY" = ( +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/vending/cigarette{ + dir = 1; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bTZ" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_4) +"bUa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bUb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/docking_area, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bUc" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"bUe" = ( +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bUf" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bUg" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bUh" = ( +/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/exodus/engineering) +"bUi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bUj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bUk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bUl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bUm" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/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/exodus/engineering) +"bUn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_starboard) +"bUo" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/tech) +"bUp" = ( +/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/tiled/steel_grid, +/area/exodus/engineering) +"bUq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bUr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bUs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bUt" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUu" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_4) +"bUv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/cargo) +"bUw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUx" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUy" = ( +/obj/structure/disposalpipe/segment, +/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/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bUz" = ( +/obj/machinery/button/blast_door{ + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + pixel_x = -6; + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer" + }, +/obj/machinery/button/blast_door{ + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + pixel_x = 6; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/janitor) +"bUB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bUC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bUD" = ( +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUE" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Lounge" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUG" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bUH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUJ" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUK" = ( +/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/exodus/maintenance/engineering) +"bUL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bUN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 4; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUO" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"bUP" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bUQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUR" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUU" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bUV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUW" = ( +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bUX" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bUY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + dir = 1; + id_tag = "escape_pod_4"; + pixel_y = -25; + tag_door = "escape_pod_4_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_4) +"bUZ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bVa" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bVb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Sub-Acute A" + }, +/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/techfloor/grid, +/area/exodus/medical/patient_wing) +"bVc" = ( +/obj/structure/table/woodentable, +/obj/item/dice, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bVd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Sub-Acute B" + }, +/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/techfloor/grid, +/area/exodus/medical/patient_wing) +"bVe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/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/tiled/white, +/area/exodus/research/misc_lab) +"bVf" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bVg" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/clothing/glasses/science, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVh" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/ignition{ + id_tag = "Xenobio"; + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVi" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_wing) +"bVj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVl" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVm" = ( +/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/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVn" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/rig/ce/equipped, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bVo" = ( +/obj/structure/table/rack, +/obj/item/rig/hazmat/equipped, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bVp" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bVq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bVr" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bVs" = ( +/obj/machinery/sparker{ + id_tag = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + icon_state = "map_injector"; + id_tag = "air_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bVt" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bVu" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/book/manual/supermatter_engine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bVv" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Airlock" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bVw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bVy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bVz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + pixel_y = -25 + }, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bVA" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "toxinsdriver" + }, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bVB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Engine Waste" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/empty_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"bVC" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/engineering_guide{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/book/manual/atmospipes, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bVD" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/evaguide{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bVE" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bVF" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bVG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bVH" = ( +/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/plating, +/area/exodus/maintenance/research_starboard) +"bVI" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bVJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Virology Access" + }, +/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/techfloor/grid, +/area/exodus/medical/virology/access) +"bVK" = ( +/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/exodus/research/xenobiology) +"bVL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Toxins Test Chamber East"; + dir = 8; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bVM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light/small/emergency, +/obj/effect/shuttle_landmark/escape_pod/start/pod4, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_4) +"bVN" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "escape_pod_4_hatch"; + frequency = 1380; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_4) +"bVO" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_4) +"bVP" = ( +/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/exodus/research/xenobiology) +"bVQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bVR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bVT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bVU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/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/exodus/maintenance/cargo) +"bVV" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"bVW" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bVX" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bVY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bVZ" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "toxin_test_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "toxin_test_sensor"; + pixel_y = 16 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bWa" = ( +/obj/machinery/navbeacon/Medbay, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"bWb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWf" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/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/exodus/medical/medbay4) +"bWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWh" = ( +/obj/structure/disposalpipe/segment, +/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/white, +/area/exodus/medical/medbay4) +"bWi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWj" = ( +/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/tiled/white, +/area/exodus/medical/medbay4) +"bWk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWl" = ( +/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/exodus/medical/medbay4) +"bWm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWn" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bWp" = ( +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWs" = ( +/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/tiled/white, +/area/exodus/medical/medbay4) +"bWt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWw" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWx" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWy" = ( +/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/white, +/area/exodus/medical/patient_wing) +"bWz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWC" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Toxins Lab" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"bWD" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWE" = ( +/obj/machinery/button/blast_door{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 6; + pixel_y = 30 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWG" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWI" = ( +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/structure/table/steel, +/obj/item/device/scanner/health, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bWJ" = ( +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bWK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Miscellaneous Reseach Room" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWL" = ( +/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/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bWM" = ( +/obj/machinery/light, +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bWN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bWO" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/material/clipboard, +/obj/item/folder/blue{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"bWP" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bWR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bWS" = ( +/obj/machinery/air_sensor{ + id_tag = "toxins_mixing_exterior" + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bWT" = ( +/obj/structure/cable/green{ + 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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bWU" = ( +/obj/machinery/door/airlock/glass/research{ + autoclose = 0; + id_tag = "tox_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bWV" = ( +/obj/machinery/door/airlock/maintenance, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bWW" = ( +/obj/structure/hygiene/shower{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bWX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/obj/machinery/airlock_sensor{ + id_tag = "engine_room_airlock"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bWY" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bWZ" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bXa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bXb" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXc" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "west bump"; + pixel_x = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bXd" = ( +/obj/machinery/computer/modular/preset/engineering, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + name = "Chief Engineer RC"; + pixel_y = 34 + }, +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bXe" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bXf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Workshop"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -10 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"bXg" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bXh" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bXi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bXj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_wing/washroom) +"bXk" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + dir = 1; + id_tag = "robotics_solar_airlock"; + pixel_y = -25; + tag_airpump = "robotics_solar_pump"; + tag_chamber_sensor = "robotics_solar_sensor"; + tag_exterior_door = "robotics_solar_outer"; + tag_interior_door = "robotics_solar_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "robotics_solar_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "robotics_solar_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"bXl" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXm" = ( +/obj/effect/shuttle_landmark/supply/station, +/turf/space, +/area/space) +"bXn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bXo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXp" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_starboard) +"bXr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"bXs" = ( +/obj/machinery/atmospherics/unary/tank/oxygen{ + volume = 3200 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bXt" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bXv" = ( +/obj/machinery/atmospherics/unary/tank/hydrogen{ + volume = 3200 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bXw" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXx" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology) +"bXy" = ( +/obj/structure/disposalpipe/junction{ + 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" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXz" = ( +/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/white, +/area/exodus/medical/medbay4) +"bXA" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "CMO Office"; + sort_type = "CMO Office" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXB" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bXC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXD" = ( +/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" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/junction{ + 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/exodus/medical/medbay4) +"bXG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXH" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Hallway Southwest"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bXI" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXJ" = ( +/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/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXK" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXL" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXM" = ( +/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, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXO" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXQ" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXR" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXS" = ( +/obj/machinery/hologram/holopad, +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXT" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bXU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bXV" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/research) +"bXZ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/research) +"bYa" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/exodus/research/misc_lab) +"bYb" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bYc" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/research) +"bYd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/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/exodus/maintenance/research_port) +"bYe" = ( +/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/exodus/research/misc_lab) +"bYf" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_port) +"bYg" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/research_port) +"bYh" = ( +/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/exodus/research/misc_lab) +"bYi" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bYj" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Miscellaneous Reseach Room" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bYk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bYl" = ( +/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, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bYm" = ( +/obj/machinery/light_switch{ + pixel_x = 7; + pixel_y = -23 + }, +/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/exodus/research/misc_lab) +"bYn" = ( +/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 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYo" = ( +/obj/machinery/light, +/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{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYp" = ( +/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/white, +/area/exodus/research) +"bYq" = ( +/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/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYr" = ( +/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/camera/network/research{ + c_tag = "Research Division South"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYt" = ( +/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/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bYv" = ( +/obj/machinery/sparker{ + id_tag = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + 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/reinforced, +/area/exodus/research/mixing) +"bYw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bYx" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/supermatter_engine{ + pixel_x = -3 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bYy" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bYz" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"bYA" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bYB" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bYC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bYD" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "virology_airlock_control"; + frequency = 1380; + name = "Virology Access Button"; + pixel_x = -24 + }, +/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/techfloor/grid, +/area/exodus/medical/virology) +"bYE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bYF" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Hallway Southeast"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bYG" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bYH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bYI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/chief) +"bYJ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bYK" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bYL" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bYM" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "SMES Access" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_smes) +"bYN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bYO" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bYP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bYQ" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bYR" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bYS" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bYU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYW" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYX" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Supplies" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/break_room) +"bYZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZa" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"bZb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -20; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZc" = ( +/obj/structure/sign/warning/pods, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_eva) +"bZd" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZe" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZf" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/atmos_control) +"bZg" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/atmos_control) +"bZh" = ( +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZo" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bZq" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay4) +"bZr" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Voidsuits" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"bZs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Ward" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"bZt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health" + }, +/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/techfloor/grid, +/area/exodus/medical/psych) +"bZu" = ( +/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/tiled/white, +/area/exodus/medical/patient_wing) +"bZv" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Hallway - Port"; + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bZx" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bZy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/biostorage) +"bZA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_c) +"bZB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Secondary Storage" + }, +/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/techfloor/grid, +/area/exodus/medical/biostorage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Sub-Acute 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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_c) +"bZF" = ( +/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/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"bZG" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bZH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"bZI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZK" = ( +/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/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZL" = ( +/obj/machinery/disposal, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Miscellaneous"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/closet/wardrobe/science_white, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZO" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/bed/roller, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Scanning"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZP" = ( +/obj/effect/shuttle_landmark/escape_shuttle/station, +/turf/space, +/area/space) +"bZQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Drone Fabrication"; + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"bZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"bZS" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bZT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bZU" = ( +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bZV" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Voidsuits" + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"bZW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"bZX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"bZY" = ( +/obj/structure/table/reinforced, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bZZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cac" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cad" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/flame/lighter/zippo, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cae" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + pixel_x = 36; + pixel_y = 18 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "cedoor"; + name = "Office Door Control"; + pixel_x = 26; + pixel_y = 17 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"caf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cag" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cah" = ( +/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/steel_grid, +/area/exodus/engineering/foyer) +"cai" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"caj" = ( +/obj/structure/table/woodentable, +/obj/item/folder/yellow, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cak" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/snacks/chips, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cal" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/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 + }, +/obj/machinery/door/airlock/command{ + id_tag = "cedoor"; + name = "Chief Engineer" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/chief) +"can" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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_grid, +/area/exodus/engineering/foyer) +"cao" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cap" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"caq" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/sleep/engi_wash) +"car" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"cas" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "CE Office"; + sort_type = "CE Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cat" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cau" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cav" = ( +/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 = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"caw" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cax" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 4; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cay" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + name = "Diagnostics Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"caz" = ( +/obj/machinery/power/apc/high{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"caA" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology) +"caB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"caC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"caD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"caE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/ward) +"caF" = ( +/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{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"caG" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"caH" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/modular/preset/medical, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"caI" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/psych) +"caJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Miscellaneous Reseach Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/research) +"caK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"caL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"caM" = ( +/obj/structure/iv_drip, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"caN" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"caO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"caP" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"caQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caR" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "cubicle1"; + name = "Cubicle 1" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_wing/washroom) +"caS" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caU" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"caW" = ( +/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/white, +/area/exodus/medical/biostorage) +"caX" = ( +/obj/structure/table/standard, +/obj/machinery/computer/modular/preset/medical, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"caY" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"caZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cba" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cbb" = ( +/obj/structure/iv_drip, +/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/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cbc" = ( +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cbd" = ( +/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{ + dir = 9 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cbe" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cbf" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"cbg" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/machinery/button/blast_door{ + id_tag = "disvent"; + name = "Incinerator Vent Control"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cbi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Research" + }, +/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/techfloor/grid, +/area/exodus/research) +"cbj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cbk" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cbl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"cbm" = ( +/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/exodus/medical/virology/access) +"cbn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Diagnostics Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"cbo" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xeno_airlock_control"; + name = "Xenobiology Access Console"; + pixel_x = 8; + pixel_y = 22; + tag_exterior_door = "xeno_airlock_exterior"; + tag_interior_door = "xeno_airlock_interior" + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cbp" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_y = 28 + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology North" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cbq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cbr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"cbs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cbt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cbu" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "eng_eva_inner"; + frequency = 1380; + name = "Engineering EVA Internal Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"cbv" = ( +/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/steel_grid, +/area/exodus/maintenance/atmos_control) +"cbw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/remains/robot, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cbx" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cby" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbz" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for engine core."; + id_tag = "EngineVent"; + name = "Engine Ventillatory Control"; + pixel_x = -24; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/alternate/door/bolts{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + id_tag = "engine_access_hatch"; + name = "Engine Hatch Bolt Control"; + pixel_x = -24; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbA" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "SMES Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_monitoring) +"cbB" = ( +/obj/structure/table/reinforced, +/obj/item/material/clipboard, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/welding/superior, +/obj/item/storage/fancy/cigarettes, +/obj/item/book/manual/supermatter_engine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbC" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Engineer's Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbD" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Voidsuits" + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cbE" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbF" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cbG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cbH" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/break_room) +"cbI" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgeryobs) +"cbJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cbK" = ( +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + frequency = 1380; + dir = 4; + 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/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cbL" = ( +/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/exodus/maintenance/research_starboard) +"cbM" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cbN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cbO" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space) +"cbP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"cbQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Surgery Access"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cbR" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/vending/wallmed1{ + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cbS" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cbT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cbU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cbV" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cbW" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + name = "Grenade Crate"; + opened = 1 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cbX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cbY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - CE's Office"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"ccb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"ccc" = ( +/obj/structure/curtain/open/shower, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "shower door" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"ccd" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/research) +"cce" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + id_tag = "Research Subgrid"; + name = "Powernet Sensor - Research Subgrid" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"ccf" = ( +/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/steel_grid, +/area/exodus/engineering/engine_monitoring) +"ccg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cch" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cci" = ( +/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/exodus/maintenance/research_port) +"cck" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + id_tag = "engine_airlock_exterior"; + name = "Engine Airlock Exterior" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_airlock) +"ccl" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virologyq_airlock_exterior"; + locked = 1; + name = "Virology Quarantine Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "virologyq_airlock_control"; + frequency = 1380; + name = "Virology Quarantine Access Button"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology) +"ccm" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ccn" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"cco" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "hop_office_desk"; + name = "HoP Office Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Head of Personnel's Desk" + }, +/obj/machinery/door/window/westleft{ + name = "Reception Window" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"ccp" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_engineering) +"ccs" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Research" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cct" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/exodus/maintenance/cargo) +"ccu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ccv" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"ccy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"ccA" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Research Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"ccB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"ccC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"ccD" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"ccE" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"ccH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccI" = ( +/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/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccJ" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virologyq_airlock_control"; + name = "Virology Quarantine Access Console"; + pixel_x = -8; + pixel_y = -22; + tag_exterior_door = "virologyq_airlock_exterior"; + tag_interior_door = "virologyq_airlock_interior" + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ccK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "Chief Engineer" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/chief) +"ccL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ccM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"ccO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccP" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/prepainted, +/area/exodus/medical/virology/access) +"ccQ" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"ccR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccT" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccV" = ( +/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/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccW" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Engineering Break Room"; + sort_type = "Engineering Break 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{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccX" = ( +/obj/machinery/door/firedoor, +/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/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 4; + name = "Engineering Break Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/break_room) +"ccY" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"ccZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Washroom" + }, +/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/techfloor/grid, +/area/exodus/engineering/break_room) +"cda" = ( +/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/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdb" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -20; + pixel_y = -21 + }, +/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 = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdc" = ( +/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/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cde" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdf" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Surgery Observation" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation Room" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay4) +"cdk" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 22 + }, +/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/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdl" = ( +/obj/structure/disposalpipe/segment, +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cdm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cdn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/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/exodus/medical/ward) +"cdo" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Ward" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"cdp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cdr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cds" = ( +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cdt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cdu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cdv" = ( +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cdw" = ( +/obj/structure/table/standard, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cdx" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cdy" = ( +/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/wood/walnut, +/area/exodus/engineering/break_room) +"cdz" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cdA" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -36 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id_tag = "isoC_window_tint"; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cdB" = ( +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cdC" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cdD" = ( +/obj/structure/flora/grass/brown, +/obj/structure/closet/crate/hydroponics/beekeeping, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"cdE" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cdF" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cdG" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cdH" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cdI" = ( +/obj/item/hand_labeler, +/obj/structure/table/glass, +/obj/machinery/vending/wallmed1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cdJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/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/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cdK" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/cooker/candy, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"cdL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology/xenoflora_storage) +"cdM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cdO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology) +"cdP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/sublevel_access) +"cdQ" = ( +/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/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cdR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cdS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology/xenoflora) +"cdU" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cdW" = ( +/obj/structure/sign/warning/secure_area, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering) +"cdX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/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/exodus/maintenance/research_starboard) +"cdY" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cdZ" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cea" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engineering) +"ceb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Break Room"; + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cec" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"ced" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cee" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cef" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"ceg" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "toxin_test_airlock"; + pixel_y = 25; + tag_airpump = "toxin_test_pump"; + tag_chamber_sensor = "toxin_test_sensor"; + tag_exterior_door = "toxin_test_outer"; + tag_interior_door = "toxin_test_inner" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ceh" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + name = "Atmospherics Voidsuits" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/atmos/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cei" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"cej" = ( +/turf/simulated/wall/prepainted, +/area/exodus/construction) +"cek" = ( +/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/walnut, +/area/exodus/engineering/break_room) +"cel" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/button/windowtint{ + pixel_x = -25 + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 8 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "mentaldoor"; + name = "office door control"; + pixel_x = -34; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"cem" = ( +/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/wood/walnut, +/area/exodus/engineering/break_room) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ceo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cep" = ( +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor, +/area/exodus/construction) +"ceq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ces" = ( +/obj/machinery/door/airlock/external{ + name = "Toxins Test Chamber" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cet" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"ceu" = ( +/obj/machinery/light, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Test Chamber South"; + dir = 1; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"cev" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cew" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cex" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "merchant_shuttle_station_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_shuttle_station_dock"; + pixel_y = 25; + tag_airpump = "merchant_shuttle_station_vent"; + tag_chamber_sensor = "merchant_shuttle_station_sensor"; + tag_exterior_door = "merchant_shuttle_station_exterior"; + tag_interior_door = "merchant_shuttle_station_interior" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/airlock_sensor{ + id_tag = "merchant_shuttle_station_sensor"; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"cey" = ( +/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" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cez" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ceA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ceB" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ceD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceG" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceH" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "merchant_shuttle_station_dock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ceI" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "merchant_shuttle_station_interior"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"ceJ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ceL" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"ceM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"ceN" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ceO" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceP" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceQ" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Atmospherics Hardsuits" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/space/void/atmos/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ceR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceS" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceT" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/holosign/surgery, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"ceU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/holosign/surgery, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + id_tag = "Surgery"; + name = "Pre-Op Prep Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"ceV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"ceW" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology) +"ceX" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Mental Health Room"; + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"ceY" = ( +/obj/machinery/vending/medical{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"ceZ" = ( +/obj/machinery/navbeacon/AftH, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfa" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cdeathalarm_kit, +/obj/item/bodybag/cryobag{ + pixel_x = -3 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -3 + }, +/obj/item/stack/nanopaste, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cfb" = ( +/obj/structure/table/standard, +/obj/item/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cfd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"cfe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cff" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cfg" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology/xenoflora) +"cfh" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/closet/secure_closet/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cfi" = ( +/obj/item/crowbar, +/obj/item/clothing/gloves/thick, +/obj/item/clothing/gloves/thick, +/obj/item/storage/box/lights/mixed, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cfj" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/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/insulated, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cfk" = ( +/obj/structure/closet/l3closet, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/head/bio_hood/general, +/obj/item/clothing/head/bio_hood/general, +/obj/item/clothing/head/bio_hood/general, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cfl" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cfm" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"cfn" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"cfo" = ( +/obj/machinery/vending/hydronutrients{ + categories = 3 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfp" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfq" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_io, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cfr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/airless, +/area/space) +"cfs" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cft" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/smartfridge, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfv" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "robotics_solar_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/portsolar) +"cfw" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cfx" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cfy" = ( +/obj/item/clothing/mask/smokable/cigarette, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cfz" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 4; + tag_west = 2; + use_power = 0 + }, +/obj/effect/engine_setup/filter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cfA" = ( +/obj/machinery/light/small, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cfB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cfC" = ( +/obj/machinery/airlock_sensor{ + id_tag = "engine_room_airlock"; + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cfD" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Transfer - Upper"; + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cfE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/sublevel_access) +"cfF" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology/access) +"cfG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cfH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cfI" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "toxin_test_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_starboard) +"cfJ" = ( +/obj/random/tech_supply, +/turf/simulated/floor, +/area/exodus/construction) +"cfL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"cfM" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cfN" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"cfO" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfP" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfQ" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cfR" = ( +/obj/machinery/newscaster{ + pixel_x = 31; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfS" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"cfT" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cfU" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "toxin_test_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_starboard) +"cfV" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfW" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfX" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfY" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgeryprep) +"cfZ" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cga" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cgb" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "engineering_cubicle"; + name = "Restroom" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cgc" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/obj/item/wrench, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgd" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cge" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgf" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cgg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cgh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cgi" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cgj" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cgk" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cgl" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for Surgery."; + id_tag = "Surgery"; + name = "Surgery"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cgm" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cgn" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/evahallway) +"cgo" = ( +/obj/machinery/computer/modular/preset/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cgp" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark/start{ + name = "Psychiatrist" + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cgq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cgr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cgs" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/engineering) +"cgt" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "Virology Isolation Room One" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cgu" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/carpet, +/area/exodus/hallway/secondary/entry/starboard) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cgw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/table/standard, +/obj/item/storage/box/botanydisk{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/botanydisk, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgx" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cgy" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cgz" = ( +/obj/structure/disposalpipe/segment, +/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/supply, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cgA" = ( +/obj/structure/table/marble, +/obj/machinery/recharger, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"cgB" = ( +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cgC" = ( +/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/sign/warning/fire{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cgD" = ( +/obj/machinery/optable{ + name = "Xenobiology Operating Table" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cgE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/sublevel_access) +"cgF" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"cgG" = ( +/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 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cgH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"cgI" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology) +"cgK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgL" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/recharger, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"cgM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/sublevel_access) +"cgN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/starboardsolar) +"cgO" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cgP" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/starboardsolar) +"cgQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Isolation to Waste" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Science Substation" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/research) +"cgS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cgT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgU" = ( +/turf/simulated/floor, +/area/exodus/construction) +"cgV" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cgW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgX" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgY" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cha" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chd" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"che" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"chf" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"chg" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + name = "Shower" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chh" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"chi" = ( +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"chj" = ( +/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/exodus/engineering/engine_eva) +"chk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering EVA Storage" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_eva) +"chl" = ( +/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/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chn" = ( +/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/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cho" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chp" = ( +/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/atmospherics/pipe/manifold/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chq" = ( +/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/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_eva) +"chr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chs" = ( +/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/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cht" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/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/exodus/engineering/foyer) +"chv" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"chx" = ( +/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 = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chy" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Foyer"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chB" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"chC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Miscellaneous Research"; + sort_type = "Miscellaneous Research" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"chD" = ( +/obj/machinery/button/alternate/door/bolts{ + id_tag = "engineering_cubicle"; + name = "Door Bolt Control"; + pixel_x = -25; + pixel_y = 8 + }, +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chE" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"chF" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"chG" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Aft Starboard" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"chH" = ( +/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/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"chI" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel_reinforced, +/obj/item/inflatable_dispenser{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/inflatable_dispenser, +/obj/item/inflatable_dispenser{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chJ" = ( +/obj/structure/bed/psych, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"chK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Virology Access" + }, +/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/tiled/techfloor/grid, +/area/exodus/medical/virology/access) +"chL" = ( +/obj/structure/table/standard, +/obj/item/gun/launcher/syringe, +/obj/item/storage/box/syringegun, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"chM" = ( +/obj/structure/bedsheetbin, +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"chN" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "virology_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -20; + pixel_y = -20 + }, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"chO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"chP" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/item/surgicaldrill, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"chQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"chR" = ( +/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/exodus/research/xenobiology) +"chS" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Storage" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"chT" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"chV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"chW" = ( +/obj/structure/curtain/open/shower/engineering, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -5 + }, +/obj/machinery/door/window/westleft{ + name = "Shower" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"chY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cia" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/item/surgicaldrill, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cib" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Engineering Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"cic" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cid" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cie" = ( +/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/exodus/medical/virology) +"cif" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"cig" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/machinery/camera/network/research{ + c_tag = "Xenoflora Storage"; + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/item/clothing/under/rank/hydroponics, +/obj/item/clothing/under/rank/hydroponics, +/obj/item/clothing/gloves/thick/botany, +/obj/item/clothing/gloves/thick/botany, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cih" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -6 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cii" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -23; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden, +/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, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cik" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cil" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cim" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Washroom" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/locker_room) +"cio" = ( +/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, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ciq" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/locker_room) +"cir" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cis" = ( +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cit" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ciu" = ( +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"civ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ciw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cix" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ciy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ciz" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"ciA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/engineering) +"ciB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ciC" = ( +/obj/machinery/door/window/eastright{ + name = "Engineering Reception Desk" + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ciE" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"ciF" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ciG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery) +"ciH" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 4; + name = "Engineering EVA Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_eva) +"ciJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciK" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciL" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_y = -30 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"ciM" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/tank/emergency/oxygen/engi, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/tank/emergency/oxygen/engi, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/tank/emergency/oxygen/engi, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciP" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/tank/emergency/oxygen/engi, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciR" = ( +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciS" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciT" = ( +/obj/machinery/button/blast_door{ + id_tag = "surgeryobs"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery2) +"ciV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ciX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"ciY" = ( +/obj/structure/disposalpipe/segment, +/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/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ciZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cja" = ( +/obj/machinery/button/blast_door{ + id_tag = "surgeryobs2"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cjb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"cjc" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cjd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cje" = ( +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cjf" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cjg" = ( +/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/tiled/white, +/area/exodus/medical/virology/access) +"cjh" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Access Fore" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cji" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cjj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjk" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "incinerator_access_control"; + frequency = 1380; + name = "Incinerator airlock control"; + pixel_x = 10; + pixel_y = -22 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cjl" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cjm" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "incinerator_access_control"; + frequency = 1380; + name = "Incinerator airlock control"; + pixel_x = -8; + pixel_y = 24 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cjn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjo" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Recovery Ward"; + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cjp" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/item/storage/box/masks, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cjq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cjs" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cjt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cju" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cjv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjw" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cjx" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cjy" = ( +/obj/machinery/door/window/southright{ + dir = 4; + name = "Primate Pen" + }, +/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/exodus/medical/virology) +"cjz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/wardrobe/medic_white, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cjA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cjB" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cjC" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjD" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjF" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjH" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Elevator - Fore" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cjJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cjK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cjL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cjM" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Break/Access" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjN" = ( +/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, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cjO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_port) +"cjP" = ( +/obj/machinery/suit_cycler/engineering, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering EVA"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cjQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cjR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cjS" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cjT" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjU" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/item/folder/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjV" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjW" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cka" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/locker_room) +"ckb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ckc" = ( +/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/steel_grid, +/area/exodus/engineering/locker_room) +"ckd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cke" = ( +/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/steel_grid, +/area/exodus/engineering/locker_room) +"ckf" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"ckg" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"ckh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + id_tag = "Engineering Subgrid"; + name = "Powernet Sensor - Engineering Subgrid" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"cki" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/padded, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ckj" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"ckk" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"ckl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ckm" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/item/device/radio/phone/medbay{ + name = "surgery emergency phone" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ckn" = ( +/obj/structure/disposalpipe/segment, +/obj/item/roller, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cko" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ckp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"ckq" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"ckr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cks" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ckt" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"ckv" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"ckw" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/airless, +/area/space) +"ckx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"cky" = ( +/obj/machinery/door/window/northright{ + name = "Xenoflora Containment" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"ckz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"ckA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"ckB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Virology Laboratory" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ckC" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckD" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckE" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_monitoring) +"ckF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckG" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"ckH" = ( +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckI" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckJ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ckK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"ckN" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckO" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "solar_xeno_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/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/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"ckP" = ( +/obj/machinery/power/solar_control{ + dir = 1; + id_tag = "starboardsolar"; + name = "Aft Starboard Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"ckQ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"ckS" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ckT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/exodus/engineering/sublevel_access) +"ckX" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cla" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"clb" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"clc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering EVA Storage Maintainance" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_eva) +"cld" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cle" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clf" = ( +/obj/structure/table/reinforced, +/obj/item/material/clipboard, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clg" = ( +/obj/machinery/navbeacon/Engineering, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cli" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clj" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/engineering/foyer) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cll" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Engineering" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"clm" = ( +/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/multi_tile/glass/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/locker_room) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/plant, +/obj/item/device/scanner/plant, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"clp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"clq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"clr" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cls" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"clt" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"clu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"clv" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"clw" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/engineering) +"clx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cly" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/circular_saw{ + pixel_y = 8 + }, +/obj/item/scalpel, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"clz" = ( +/obj/machinery/optable, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"clA" = ( +/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 = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"clB" = ( +/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 = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"clC" = ( +/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/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"clD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 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 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"clE" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"clF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"clG" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"clH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2" + }, +/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/techfloor/grid, +/area/exodus/medical/surgeryprep) +"clI" = ( +/obj/machinery/optable, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"clJ" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"clK" = ( +/obj/structure/table/standard, +/obj/item/circular_saw{ + pixel_y = 8 + }, +/obj/item/scalpel, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"clL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"clM" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"clN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology/access) +"clO" = ( +/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/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"clP" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"clQ" = ( +/obj/machinery/light/small, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"clS" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engi_shuttle) +"clT" = ( +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"clU" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/item/tank/air, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"clV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"clW" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engineering) +"clX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"clY" = ( +/obj/machinery/light, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"clZ" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cma" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Drone Fabrication"; + sort_type = "Drone Fabrication" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cmb" = ( +/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/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cmc" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_room) +"cmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cme" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmf" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"cmg" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmh" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmi" = ( +/obj/machinery/biogenerator, +/obj/machinery/camera/network/research{ + c_tag = "Xenoflora"; + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmj" = ( +/turf/unsimulated/mask, +/area/exodus/engineering/sublevel_access) +"cmk" = ( +/obj/item/storage/lockbox/vials, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cml" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"cmm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/construction) +"cmn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmo" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "EngineEmitterPortWest"; + name = "Engine Waste Handling Access" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cmp" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Starboard"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cmq" = ( +/obj/item/storage/fancy/vials, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmr" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "EngineEmitterPortWest"; + name = "Engine Waste Handling Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cms" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cmt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cmu" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/atmos/storage) +"cmv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cmw" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmx" = ( +/mob/living/bot/floorbot/premade, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmz" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/effect/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Engineering"; + name = "Engineering RC"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmD" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cmE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmG" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmH" = ( +/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/exodus/engineering/foyer) +"cmI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmK" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmL" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmM" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/effect/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cmN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmO" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Locker Room"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmQ" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "robotics_solar_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cmR" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/engineering) +"cmS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"cmU" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/retractor, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cmV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"cmW" = ( +/obj/machinery/button/holosign{ + pixel_x = 24; + pixel_y = 2 + }, +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Operating Theatre 1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"cmY" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cmZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cna" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cnb" = ( +/obj/machinery/button/holosign{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Operating Theatre 2"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cnc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cne" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/retractor, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cng" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "robotics_solar_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cnh" = ( +/obj/machinery/power/supermatter, +/obj/machinery/mass_driver{ + id_tag = "enginecore" + }, +/obj/effect/engine_setup/core, +/turf/simulated/floor/greengrid/nitrogen, +/area/exodus/engineering/engine_room) +"cni" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cnj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnk" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cnl" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/arrivals) +"cnn" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/obj/item/device/camera, +/obj/item/device/eftpos{ + eftpos_name = "Library EFTPOS scanner" + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"cno" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + dir = 8; + id_tag = "solar_xeno_airlock"; + pixel_x = 25; + tag_airpump = "solar_xeno_pump"; + tag_chamber_sensor = "solar_xeno_sensor"; + tag_exterior_door = "solar_xeno_outer"; + tag_interior_door = "solar_xeno_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_xeno_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "solar_xeno_pump" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cnp" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/construction) +"cnq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cnr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cns" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnt" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_starboard) +"cnu" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"cnv" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cnx" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cny" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cnA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cnB" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cnC" = ( +/obj/machinery/door/firedoor, +/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/wallframe_spawn/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cnD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/construction) +"cnE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cnF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engineering_monitoring) +"cnH" = ( +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engineering_monitoring) +"cnK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/workshop) +"cnL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + name = "Engineering Locker Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/workshop) +"cnM" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/workshop) +"cnN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/workshop) +"cnP" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnQ" = ( +/obj/structure/table/standard, +/obj/item/hemostat, +/obj/machinery/light, +/obj/item/cautery, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnR" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/locker_room) +"cnS" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnT" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnU" = ( +/obj/structure/table/standard, +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/medical, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnV" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnW" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cnX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cnY" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cnZ" = ( +/obj/structure/table/standard, +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/medical, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"coa" = ( +/obj/structure/table/standard, +/obj/item/hemostat, +/obj/machinery/light, +/obj/item/cautery, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cob" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "solar_xeno_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/starboardsolar) +"coc" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cod" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"coe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Starboard"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cof" = ( +/obj/machinery/light{ + dir = 1 + }, +/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/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cog" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"coi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"coj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cok" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + 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 = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"col" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"com" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology) +"con" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"coo" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "xeno_airlock_control"; + frequency = 1380; + name = "Xenobiology Access Button"; + pixel_x = 8; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cop" = ( +/obj/machinery/camera/xray/research{ + c_tag = "Xenobiology Access" + }, +/obj/structure/closet/secure_closet/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"coq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 7; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/xenobio, +/obj/machinery/vending/wallmed1{ + pixel_x = -7; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cor" = ( +/obj/machinery/airlock_sensor{ + id_tag = "eng_al_c_snsr"; + pixel_x = -25 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cos" = ( +/obj/machinery/disposal, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/xenobiology) +"cot" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cou" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cov" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/space_heater, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cow" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cox" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"coy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/engineering) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"coA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"coB" = ( +/obj/machinery/door/airlock/maintenance, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"coC" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"coD" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coE" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coF" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"coG" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coH" = ( +/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/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"coJ" = ( +/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_grid, +/area/exodus/engineering) +"coK" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"coL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 30; + pixel_z = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = 30; + pixel_z = -4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"coM" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coN" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coO" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coP" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1 Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery) +"coT" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "waste pump" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Engine Waste" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"coU" = ( +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Surgery Prep"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"coV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2 Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery2) +"coW" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/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/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology/access) +"coX" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology/access) +"coY" = ( +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"coZ" = ( +/mob/living/simple_animal/slime, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cpa" = ( +/obj/machinery/door/window/eastleft{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpb" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"cpc" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery) +"cpd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/westright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cpe" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cpf" = ( +/obj/effect/landmark/map_data/exodus, +/turf/space, +/area/space) +"cpg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cph" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery2) +"cpi" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cpj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/storage) +"cpm" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "solar_xeno_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cpn" = ( +/obj/machinery/power/rad_collector, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cpo" = ( +/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/plating, +/area/exodus/engineering/sublevel_access) +"cpp" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Elevator - Aft"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cpq" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cpr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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/plating, +/area/exodus/engineering/sublevel_access) +"cps" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cpt" = ( +/obj/machinery/door/window/southright{ + name = "Virology Isolation Room Three" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cpu" = ( +/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/exodus/engineering/sublevel_access) +"cpw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"cpx" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cpy" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"cpz" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Monitoring Room"; + dir = 8 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cpA" = ( +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology Southeast"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/space, +/area/space) +"cpD" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cpE" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cpF" = ( +/obj/machinery/computer/shuttle_control/explore/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cpH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cpI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpK" = ( +/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/exodus/research/xenobiology) +"cpL" = ( +/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/exodus/research/xenobiology) +"cpN" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cpO" = ( +/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{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpP" = ( +/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/white, +/area/exodus/research/xenobiology) +"cpS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpV" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"cpW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/atmos{ + name = "Atmospherics Monitoring Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engineering_monitoring) +"cpX" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_north = 4; + tag_west = 2; + use_power = 0 + }, +/obj/effect/engine_setup/filter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cpY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Monitoring Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engineering_monitoring) +"cpZ" = ( +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/airless, +/area/space) +"cqa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cqb" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"cqd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cqe" = ( +/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/exodus/engineering) +"cqf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cqg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cqh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cqi" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cqj" = ( +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cqk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cql" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cqm" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/AMinus, +/obj/item/reagent_containers/ivbag/blood/APlus, +/obj/item/reagent_containers/ivbag/blood/BMinus, +/obj/item/reagent_containers/ivbag/blood/BPlus, +/obj/item/reagent_containers/ivbag/blood/OPlus, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cqn" = ( +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cqo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cqp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cqq" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cqr" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "virology_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/medbay) +"cqs" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "solar_xeno_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/starboardsolar) +"cqu" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cqv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cqw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "engineering_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -30; + pixel_y = -25 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cqx" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cqz" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cqA" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "virology_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = 20; + pixel_y = 20 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cqB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cqC" = ( +/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/white, +/area/exodus/research/xenobiology) +"cqD" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space) +"cqE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cqF" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space) +"cqG" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "engineering_dock_inner"; + frequency = 1380; + name = "Engineering Dock Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"cqH" = ( +/obj/structure/sign/warning/hot_exhaust{ + pixel_x = -32 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/space, +/area/space) +"cqJ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cqL" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cqN" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_y = -3 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id_tag = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -6; + pixel_y = 7 + }, +/obj/machinery/button/toggle{ + desc = "A remote control-switch for the engine emitter."; + id_tag = "EngineEmitter"; + name = "Engine Emitter"; + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cqO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cqP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cqR" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"crb" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"crc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/airless, +/area/space) +"crd" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "engineering_dock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + dir = 4; + id_tag = "engineering_dock_airlock"; + pixel_x = -25; + tag_airpump = "engineering_dock_pump"; + tag_chamber_sensor = "engineering_dock_sensor"; + tag_exterior_door = "engineering_dock_outer"; + tag_interior_door = "engineering_dock_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cre" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"crf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"crg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/space) +"crh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cri" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"crj" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"crk" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/space, +/area/space) +"crl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"crm" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"crn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cro" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"crp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"crq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "engineering_dock_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "engineering_dock_sensor"; + pixel_x = -25; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"crr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"crs" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "disvent"; + name = "Incinerator Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"crt" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1 Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"cru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"crv" = ( +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engineering) +"crw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"crx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cry" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2 Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"crz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"crA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"crB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"crC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/incinerator) +"crD" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"crE" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/airless, +/area/space) +"crF" = ( +/obj/machinery/door/blast/regular{ + desc = "By gods, release the hounds!"; + dir = 4; + id_tag = "xenobioout6"; + name = "Containment Release" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"crG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/medbay) +"crH" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "engineering_dock_outer"; + frequency = 1380; + name = "Engineering Dock Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"crI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"crJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"crK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"crL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"crM" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"crN" = ( +/obj/machinery/door/blast/regular{ + id_tag = "EngineVent"; + name = "Reactor Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/engineering/engine_room) +"crO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"crP" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"crQ" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"crR" = ( +/obj/structure/table/standard, +/obj/item/storage/box/matches, +/obj/item/storage/fancy/cigarettes, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/deck/cards, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"crS" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"crU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"crV" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"crY" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/beach/water/ocean, +/area/exodus/crew_quarters/fitness) +"csb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/arcade/battle, +/obj/item/stock_parts/circuitboard/arcade/orion_trail, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"csg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"csj" = ( +/obj/machinery/smartfridge/secure/extract, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csk" = ( +/obj/machinery/computer/operating{ + name = "Xenobiology Operating Computer" + }, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/space, +/area/space) +"csm" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csn" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/device/flashlight, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cso" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/space, +/area/space) +"csr" = ( +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"css" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cst" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"csu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csv" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csw" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"csz" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csA" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Radiator" + }, +/turf/space, +/area/space) +"csB" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/computer/robotics, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"csC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"csD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"csE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"csF" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"csG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"csH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"csI" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"csJ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"csK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"csL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"csM" = ( +/obj/structure/lattice, +/obj/structure/grille/broken{ + dir = 8 + }, +/turf/space, +/area/space) +"csN" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/xray/medbay{ + c_tag = "Virology Access Aft" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csO" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csP" = ( +/obj/item/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/space, +/area/space) +"csR" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/space, +/area/space) +"csS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csT" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/airless, +/area/space) +"csX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ctb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stock_parts/circuitboard/message_monitor{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"cte" = ( +/obj/effect/floor_decal/corner/lime/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"ctg" = ( +/obj/item/stack/material/rods{ + amount = 6 + }, +/turf/space, +/area/space) +"ctn" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cto" = ( +/obj/structure/lattice, +/obj/structure/grille/broken{ + dir = 1 + }, +/turf/space, +/area/space) +"ctp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/space, +/area/space) +"ctq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cts" = ( +/obj/item/stack/material/rods{ + amount = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ctt" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"ctu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Hallway North"; + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"ctv" = ( +/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, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"ctw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"ctx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cty" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctz" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"ctA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ctB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctC" = ( +/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/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"ctD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Operating Theatre 1 Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery) +"ctE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Operating Theatre 2 Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery2) +"ctF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/virology) +"ctH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/virology) +"ctK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/space, +/area/space) +"ctQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Monkey Pen" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctR" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctS" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/westright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"ctT" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctV" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctW" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctX" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/glass_jar, +/obj/item/glass_jar, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cua" = ( +/obj/machinery/power/solar{ + id_tag = "starboardsolar"; + name = "Starboard Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cub" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/space, +/area/space) +"cud" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/space, +/area/space) +"cuf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Pre-Op Prep Room Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"cul" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cum" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"cun" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuo" = ( +/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/exodus/engineering) +"cuq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cur" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/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/exodus/engineering) +"cus" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cut" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/techfloor/grid, +/area/exodus/engineering/workshop) +"cuu" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Engineering"; + sort_type = "Engineering" + }, +/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/exodus/engineering) +"cuv" = ( +/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/exodus/engineering/workshop) +"cuw" = ( +/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/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/steel_grid, +/area/exodus/engineering/workshop) +"cux" = ( +/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{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cuy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cuz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cuB" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cuC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cuD" = ( +/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/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cuE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cuF" = ( +/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/exodus/maintenance/medbay) +"cuG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuJ" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuL" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "virology_airlock_control"; + frequency = 1380; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuM" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuO" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/folder/white, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuP" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"cuT" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"cuU" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/suit/armor/vest/nt, +/obj/item/clothing/suit/armor/vest/nt, +/obj/item/clothing/suit/armor/vest/nt, +/obj/item/clothing/suit/armor/vest/nt, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"cuV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"cuW" = ( +/obj/structure/extinguisher_cabinet, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cuX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"cuY" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"cuZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Warden's Office" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"cva" = ( +/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, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"cvb" = ( +/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/white, +/area/exodus/research/xenobiology) +"cvc" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cvd" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/clothing/head/bio_hood/scientist, +/obj/item/clothing/suit/bio_suit/scientist, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cve" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cvf" = ( +/obj/structure/table/rack, +/obj/item/crowbar, +/obj/item/device/radio/off, +/obj/item/wrench, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"cvg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cvh" = ( +/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/exodus/security/warden) +"cvi" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvj" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvk" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"cvl" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvo" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvq" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cvt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cvy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvD" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/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/exodus/engineering) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Port"; + dir = 4 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cvN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/incinerator) +"cvO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvP" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvZ" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cwa" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwb" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwe" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwf" = ( +/obj/machinery/power/solar{ + id_tag = "starboardsolar"; + name = "Starboard Solar Array" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cwm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cwn" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cwo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cwp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cwt" = ( +/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/airlock/command{ + name = "Research Director" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/hor) +"cwu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cwv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cww" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cwx" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cwy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cwz" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cwO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Hard Storage" + }, +/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/techfloor/grid, +/area/exodus/engineering/storage) +"cwQ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cwR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwU" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"cwW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Hard Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/storage) +"cwX" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering\\Medbay Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engineering) +"cwZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cxb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"cxe" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + name = "Research Director RC"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cxt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxu" = ( +/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/steel_grid, +/area/exodus/engineering) +"cxv" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cxx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cxy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cxz" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxA" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxC" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - RD's Office"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cxD" = ( +/obj/structure/dispenser{ + oxygentanks = 0 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cxF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Incinerator Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/incinerator) +"cxG" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxH" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxK" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"cxM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Virology Laboratory" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxQ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxV" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/westright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cxW" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cyh" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cyi" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cyq" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"cyv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cyx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cyy" = ( +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyz" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyA" = ( +/obj/machinery/fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyD" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cyE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/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/techfloor/grid, +/area/exodus/research/storage) +"cyF" = ( +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cyG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Southeast"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cyI" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cyJ" = ( +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cyK" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/item/device/radio/phone/medbay{ + name = "virology emergency phone"; + pixel_x = -6; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cyL" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cyN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cyP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cyU" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cyV" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cyY" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyZ" = ( +/obj/item/device/paint_sprayer, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/item/device/t_scanner, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cza" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"czb" = ( +/obj/machinery/light, +/obj/item/wrench, +/obj/item/device/flashlight, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"czc" = ( +/obj/machinery/requests_console{ + department = "Engineering"; + name = "Engineering RC"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"czd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cze" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_airlock"; + pixel_y = 25; + tag_airpump = "rescue_shuttle_dock_pump"; + tag_chamber_sensor = "rescue_shuttle_dock_sensor"; + tag_exterior_door = "rescue_shuttle_dock_outer"; + tag_interior_door = "rescue_shuttle_dock_inner" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"czf" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "virology_inner"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/medbay) +"czg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"czi" = ( +/obj/machinery/atmospherics/tvalve/digital/bypass{ + dir = 1; + icon_state = "map_tvalve0"; + state = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"czj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "rescue_shuttle_dock_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"czk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "rescue_shuttle_dock_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"czn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czp" = ( +/obj/machinery/light, +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "rescue_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"czr" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czs" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "rescue_shuttle_dock_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"czA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering) +"czD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czI" = ( +/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" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"czN" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAe" = ( +/obj/machinery/door/firedoor, +/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, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cAi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/airlock_sensor{ + id_tag = "rescue_shuttle_dock_sensor"; + pixel_x = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"cAj" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "incinerator_access_control"; + name = "Incinerator Access Console"; + pixel_x = -6; + pixel_y = -26; + tag_exterior_door = "incinerator_airlock_exterior"; + tag_interior_door = "incinerator_airlock_interior" + }, +/obj/machinery/button/ignition{ + id_tag = "Incinerator"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cAk" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "rescue_shuttle_dock_inner"; + frequency = 1380; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"cAp" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cAt" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cAz" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + dir = 1; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAB" = ( +/obj/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAD" = ( +/obj/machinery/light, +/obj/structure/closet, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cAP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cAV" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cBl" = ( +/obj/machinery/firealarm{ + pixel_y = 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cBm" = ( +/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/exodus/engineering) +"cBn" = ( +/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/steel_grid, +/area/exodus/engineering) +"cBo" = ( +/obj/machinery/light{ + dir = 1 + }, +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cBp" = ( +/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/steel_grid, +/area/exodus/engineering) +"cBq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cBs" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cBt" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cups, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cBu" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"cBz" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cBB" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cBD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"cBH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"cBI" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay) +"cBN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/drone_fabrication) +"cBW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCa" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/incinerator) +"cCb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/incinerator) +"cCf" = ( +/obj/structure/closet/crate/solar_assembly, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cCq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cCx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cCz" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cCA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCC" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cCJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/space) +"cCO" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"cCP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cCR" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCS" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCT" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCV" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCW" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCX" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCY" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"cDd" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cDf" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cDg" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cDh" = ( +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDi" = ( +/obj/machinery/computer/cryopod/robot{ + pixel_y = 30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDj" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/engineering/drone_fabrication) +"cDk" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_smes) +"cDl" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_smes) +"cDm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/latejoin/cyborg, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_airlock) +"cDt" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDu" = ( +/obj/machinery/recharge_station, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engine Monitoring Room" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_monitoring) +"cDx" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "Engine Access" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_airlock) +"cDy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDA" = ( +/obj/machinery/computer/drone_control{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDB" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cDC" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cDE" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "toxin_test_airlock"; + frequency = 1380; + name = "interior access button"; + pixel_x = 20; + pixel_y = 20 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cDF" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/incinerator) +"cDJ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_monitoring) +"cDL" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDN" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cDS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cDU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDW" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cEd" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEe" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEk" = ( +/obj/machinery/drone_fabricator, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEn" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEo" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/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, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cEt" = ( +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"cEu" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "air_in"; + use_power = 1 + }, +/obj/machinery/sparker{ + id_tag = "Incinerator"; + pixel_x = -20 + }, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"cEw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cEx" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEy" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEz" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEA" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cEE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEF" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cEI" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Drone Fabrication" + }, +/obj/structure/disposalpipe/segment, +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/drone_fabrication) +"cEL" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEM" = ( +/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/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEU" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEW" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEX" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEZ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cFA" = ( +/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/plating, +/area/exodus/engineering/drone_fabrication) +"cFC" = ( +/obj/machinery/computer/shuttle_control/engineering{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Shuttle Access"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cFH" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFI" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFL" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cFM" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/item/folder/white, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cFR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cFT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "engine_airlock_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cFU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cFY" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"cFZ" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cGc" = ( +/obj/effect/landmark/latejoin/cyborg, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cGd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/plating, +/area/exodus/engineering/drone_fabrication) +"cGf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engineering SMES"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cGk" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Monitoring Room"; + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGn" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGo" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGr" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cGs" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cGt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_room) +"cGA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/bolted{ + id_tag = "engineering_dock_inner"; + frequency = 1380; + name = "Engineering Dock Airlock" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"cGC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cGI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cGK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cGM" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/incinerator) +"cGQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space) +"cGR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"cGS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cGU" = ( +/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/exodus/engineering/engine_room) +"cGV" = ( +/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/exodus/engineering/engine_room) +"cGW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cGX" = ( +/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/exodus/engineering/engine_room) +"cGZ" = ( +/obj/machinery/computer/drone_control{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHa" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/robotic_fabricator, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHb" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"cHf" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + id_tag = "Master"; + name = "Powernet Sensor - Master Grid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cHm" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "engine_electrical_maintenance"; + name = "Door Bolt Control"; + pixel_x = 5; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cHq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"cHt" = ( +/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/exodus/engineering/engine_room) +"cHu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"cHA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cHB" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/ion_engine{ + dir = 4; + icon_state = "nozzle" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"cHD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cHF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHK" = ( +/obj/item/stack/material/rods{ + amount = 10 + }, +/turf/space, +/area/space) +"cHL" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 1" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"cHR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_waste) +"cHT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-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 = 6 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Waste Handling" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cHU" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/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 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cHY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIa" = ( +/obj/machinery/power/emitter{ + anchored = 1; + id_tag = "EngineEmitter"; + state = 2 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIb" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + id_tag = "Engine Output"; + name = "Powernet Sensor - 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/exodus/engineering/engine_room) +"cIc" = ( +/obj/item/stack/cable_coil, +/turf/space, +/area/space) +"cId" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/alarm/nobreach{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIe" = ( +/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/exodus/engineering/engine_room) +"cIl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cIn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space) +"cIo" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"cIp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_waste) +"cIq" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIr" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIs" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engine Waste Handling" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_engine) +"cIu" = ( +/obj/machinery/power/solar{ + id_tag = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIv" = ( +/obj/machinery/power/solar{ + id_tag = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cID" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIF" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIH" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIJ" = ( +/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/exodus/engineering/engine_room) +"cIK" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/portsolar) +"cIL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engi_engine) +"cIN" = ( +/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/exodus/engineering/engine_room) +"cIO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"cIQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIU" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIV" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIX" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Engine Waste" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJa" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/portsolar) +"cJb" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJe" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJf" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJi" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJk" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"cJl" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJn" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Aft Port" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cJo" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJv" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJF" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/portsolar) +"cJH" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJL" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_x = 5; + pixel_y = -25 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id_tag = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -5; + pixel_y = -25 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJT" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cJU" = ( +/obj/machinery/camera/network/engine{ + c_tag = "Engine Core West"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJV" = ( +/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/exodus/engineering/engine_room) +"cJW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJX" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJZ" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKa" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Core East"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKg" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/engi_engine) +"cKk" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKr" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cKu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKv" = ( +/obj/machinery/air_sensor{ + id_tag = "engine_sensor" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/exodus/engineering/engine_room) +"cKw" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cKx" = ( +/obj/structure/sign/warning/vent_port{ + pixel_y = 32 + }, +/turf/space, +/area/space) +"cKB" = ( +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 1; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cKC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKH" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "engineering_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -8 + }, +/turf/space, +/area/space) +"cKI" = ( +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cKM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cKN" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cKO" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "engineering_shuttle_hatch"; + frequency = 1380; + name = "Shuttle Hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_engineering) +"cKU" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKV" = ( +/obj/machinery/airlock_sensor{ + id_tag = "virology_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + dir = 8; + id_tag = "virology_airlock"; + pixel_x = 25; + tag_airpump = "virology_pump"; + tag_chamber_sensor = "virology_sensor"; + tag_exterior_door = "virology_outer"; + tag_interior_door = "virology_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "virology_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKX" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"cKY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "virology_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKZ" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cLc" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "engineering_shuttle"; + pixel_y = 25; + tag_door = "engineering_shuttle_hatch" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Drone Fabrication/Engine Waste Handling" + }, +/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/techfloor/grid, +/area/exodus/engineering/drone_fabrication) +"cLf" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_electrical_maintenance"; + locked = 1; + name = "Electrical Maintenance" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLg" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + id_tag = "engine_airlock_interior"; + name = "Engine Airlock Interior" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cLi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cLj" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/obj/effect/overmap/visitable/ship/landable/pod/engineering, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLp" = ( +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + id_tag = "Engine Power"; + name = "Powernet Sensor - Engine Power" + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLs" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id_tag = "portsolar"; + name = "Aft Port Solar Control" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cLt" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"cLu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Port Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cLw" = ( +/turf/simulated/floor/greengrid/nitrogen, +/area/exodus/engineering/engine_room) +"cLx" = ( +/obj/machinery/camera/network/engine{ + c_tag = "Engine Core South"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLA" = ( +/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/exodus/engineering/engine_room) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLE" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_access_hatch"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_room) +"cLF" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_access_hatch"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_room) +"cLI" = ( +/obj/machinery/button/blast_door{ + id_tag = "EngineVent"; + name = "Reactor Ventillatory Control"; + pixel_x = -25 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/mob/living/simple_animal/friendly/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cLK" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "robotics_solar_outer"; + frequency = 1380; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/portsolar) +"cLL" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cLP" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cLQ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Port"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cLS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cLU" = ( +/turf/space, +/area/space) +"cLZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cMa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter{ + id_tag = "wloop_atm_meter" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cMb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cMe" = ( +/obj/structure/disposalpipe/segment, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"cMf" = ( +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"cMg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cQw" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cQX" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"cSp" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"cUO" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"cYR" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"djd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"dkO" = ( +/obj/machinery/computer/shuttle_control/explore/mining, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"drB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"drR" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/emergency) +"dvY" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"dxK" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"dEE" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"dHF" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"dJe" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"dKq" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"dMi" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"dMn" = ( +/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_grid, +/area/exodus/hallway/secondary/exit) +"dMz" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"dNC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"dNS" = ( +/obj/effect/shuttle_landmark/exodus_main_port, +/turf/space, +/area/space) +"dQa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"dRD" = ( +/obj/effect/overmap/visitable/ship/landable/pod/mining, +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"eaE" = ( +/obj/structure/closet/crate, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/material/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/material/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/material/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/item/material/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/material/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/effect/floor_decal/industrial/fire{ + icon_state = "stripe"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"ejv" = ( +/obj/effect/shuttle_landmark/research_pod_dock, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"esY" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/arrival/station) +"etN" = ( +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"eut" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ewE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"eEV" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"eKH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"eNu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"eTV" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"eWD" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"eZK" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"ffg" = ( +/obj/effect/shuttle_landmark/engineering_pod_dock, +/obj/structure/cable/green, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"fhb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"fmR" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "mining_dock_inner"; + frequency = 1380; + name = "Mining Dock Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"fnT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A." + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"fpV" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"fyf" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"fCE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"fKm" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"fKS" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"fPv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"fTj" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/exosuit/premade/light/exploration, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"gcu" = ( +/turf/simulated/floor/blackgrid{ + light_inner_range = 2; + light_max_bright = 3; + light_outer_range = 4 + }, +/area/exodus/security/nuke_storage) +"gdx" = ( +/obj/machinery/conveyor_switch{ + id_tag = "cargo_mining_conveyor" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"gny" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/exodus/quartermaster/miningdock) +"gpG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"gsd" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"gwY" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"gyJ" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"gAA" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"gOE" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals - Main Shuttle"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"gSL" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"hbt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/exodus/quartermaster/miningdock) +"hgF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"hkD" = ( +/obj/machinery/light_switch{ + pixel_x = 4; + pixel_y = -24 + }, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/exosuit/premade/powerloader, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"hoh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"hsk" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"htC" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"hDl" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"hDm" = ( +/obj/machinery/door/window{ + dir = 4; + name = "High-Risk Modules" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"hLX" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"hOb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"hPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"hWZ" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"hZw" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"idh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"idY" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"igB" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"ihN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"iok" = ( +/obj/machinery/vending/robotics{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"itc" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"itS" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/arrival/station) +"ixD" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"iFB" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"iKS" = ( +/obj/machinery/conveyor{ + id_tag = "cargo_mining_conveyor" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"iNs" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"iTt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"iUa" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/reagent_temperature/cooler, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"iXX" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/sublevel_access) +"iYA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"jfD" = ( +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"jko" = ( +/obj/machinery/power/rad_collector, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"jsn" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"jva" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"jFq" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/aft) +"jHW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"jKq" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/bar/cabin) +"jYD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"khd" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/simulated/floor/bluegrid, +/area/exodus/research/server) +"klA" = ( +/turf/simulated/floor/plating, +/area/space) +"klX" = ( +/obj/machinery/light, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + dir = 1; + id_tag = "research_shuttle"; + pixel_y = -25; + tag_door = "research_shuttle_hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"kvT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/hostile/retaliate/parrot/Poly, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"kxa" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"kSt" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"kVV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"lbI" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"lfJ" = ( +/obj/item/device/radio/beacon, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"lyt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"lAZ" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Departures West"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"lDi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"lDJ" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"lFM" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"miB" = ( +/obj/structure/cable/green, +/obj/machinery/ion_engine{ + dir = 1; + icon_state = "nozzle" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"mue" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"mwu" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"mGD" = ( +/obj/machinery/robotics_fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"mKS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 4; + name = "Engineering Locker Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/workshop) +"mLL" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"mNK" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"mVl" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/plating, +/area/ship/exodus_pod_research) +"mYp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"ngU" = ( +/obj/effect/shuttle_landmark/exodus_main_aft, +/turf/space, +/area/space) +"nky" = ( +/obj/effect/shuttle_landmark/exodus_main_starboard, +/turf/space, +/area/space) +"noV" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_mining) +"nvs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"nIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"nOM" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"nPR" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"nYi" = ( +/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/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"oaC" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/roller, +/obj/item/clothing/gloves/latex/nitrile, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"odK" = ( +/obj/machinery/mech_recharger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"ohn" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"otj" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"ouk" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"oxE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + dir = 8; + id_tag = "mining_shuttle"; + pixel_x = 25; + pixel_y = -8; + tag_door = "mining_shuttle_hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"oAO" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"oDi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"oWh" = ( +/obj/machinery/requests_console{ + department = "Arrival shuttle"; + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/cryopod{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"pbo" = ( +/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/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"poU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"pqS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"pAd" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/ion_engine{ + dir = 4; + icon_state = "nozzle" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"pFS" = ( +/obj/machinery/r_n_d/server/core, +/turf/simulated/floor/bluegrid, +/area/exodus/research/server) +"pGo" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"pWa" = ( +/obj/effect/shuttle_landmark/exodus_main_fore, +/turf/space, +/area/space) +"qlX" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"qmC" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"qBY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/item/device/radio/beacon, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"qHi" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"qHU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"qJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"qJW" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"rhM" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"rkN" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"roQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/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/plating, +/area/exodus/maintenance/research_starboard) +"rup" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/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/plating, +/area/ship/exodus_pod_mining) +"rwB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"rNu" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"rPP" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"rQB" = ( +/obj/effect/paint_stripe/yellow, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_engineering) +"rUP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"rVT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"rYD" = ( +/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/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"scJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"sdB" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"sfM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"sfO" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"sgI" = ( +/obj/machinery/conveyor{ + backwards = 8; + dir = 9; + forwards = 2; + icon_state = "conveyor1"; + id_tag = "cargo_mining_conveyor"; + movedir = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"ssg" = ( +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"sxY" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"sBp" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"sCJ" = ( +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"sDc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"sFU" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"sGZ" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"sNl" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"sVy" = ( +/obj/effect/floor_decal/corner/blue{ + 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/white, +/area/exodus/research/docking) +"sWj" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"sYh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"tos" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"tpe" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/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" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"tuN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/black, +/obj/effect/floor_decal/corner/white/three_quarters, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"tzU" = ( +/obj/machinery/computer/ship/sensors{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/ship/exodus_pod_mining) +"tAY" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"tCN" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"tDI" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/camera/network/research{ + c_tag = "Research Division North"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"tGf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tGo" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"tQY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"tRc" = ( +/obj/effect/paint_stripe/mauve, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_research) +"tUa" = ( +/obj/effect/shuttle_landmark/mining_pod_dock, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tXh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tYK" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"ult" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "mining_shuttle_hatch"; + frequency = 1380; + name = "Shuttle Hatch" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"uoa" = ( +/obj/machinery/door/airlock/external/bolted{ + id_tag = "mining_dock_outer"; + frequency = 1380; + name = "Mining Dock Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"uFU" = ( +/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/exodus/research) +"uGq" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "EngineEmitterPortWest"; + name = "Engine Waste Handling Access" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"uJB" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "mining_dock_airlock"; + frequency = 1380; + name = "exterior access button"; + pixel_x = -5; + pixel_y = 25 + }, +/turf/space, +/area/space) +"uKl" = ( +/obj/effect/floor_decal/corner/yellow/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"uRH" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"vcu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"vfH" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"vme" = ( +/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/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"vno" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"vHf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/mining{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"vKw" = ( +/obj/machinery/shipsensors, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/space) +"vRS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"vVU" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"wby" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/locker) +"wht" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"wiC" = ( +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/iron, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "mining_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/quartermaster/miningdock) +"wjf" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"wqh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"wsi" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"wAA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Mining Dock Airlock"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor, +/area/exodus/quartermaster/miningdock) +"wBc" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"wJf" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"wTp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"wVz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"xeI" = ( +/obj/machinery/computer/mining, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"xhz" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"xpO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/material/osmium/ten, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"xrP" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"xFu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"xHt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Shuttle Dock Airlock" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"xJn" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"xOe" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"xVx" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"xVT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"xZr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"yce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"yeJ" = ( +/obj/machinery/light, +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"yjb" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/super/critical{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) + +(1,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cpf +"} +(2,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(3,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(4,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(5,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(6,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(7,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(8,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(9,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(10,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(11,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(12,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(13,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(14,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(15,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(16,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(17,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(18,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(19,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(20,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(21,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(22,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(23,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(24,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(25,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(26,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(27,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(28,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(29,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(30,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +atf +aFD +cec +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(31,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cec +cex +cec +cLU +aaf +aIo +aph +aph +aph +aph +aph +aph +aIo +aaf +aKz +aLE +aLP +axF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(32,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +cec +cec +awq +cec +ceI +cec +atS +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +axF +aVg +aYk +axF +aaf +crP +crP +crP +crP +crP +crP +aaf +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(33,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ave +ayd +aAl +bdy +cer +ceH +axH +cec +cLU +cLU +esY +aIw +aIw +aIw +esY +cLU +cLU +aaf +axF +aVf +aYi +axF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ctn +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(34,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +avN +ayj +aAp +brq +cev +azk +ays +cec +cLU +cLU +esY +acm +rNu +ash +esY +cLU +cLU +aBI +axF +aBK +aYm +axF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(35,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +cec +cec +atS +btE +azk +ays +cec +cLU +cLU +esY +aID +iFB +iNs +esY +cLU +cLU +aHF +aBE +aBF +aDn +aBI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(36,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +buv +awH +azh +atS +cLU +esY +esY +aMV +aDK +aMV +esY +esY +cLU +aBI +aCe +aCz +aSH +aBI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(37,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +buv +azt +ayZ +cec +cec +esY +aGq +dJe +lDJ +sNl +tuN +esY +axF +axF +aBV +aBX +aTr +aBI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bcy +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(38,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +buv +azt +azi +azs +aAq +aAw +qmC +aFM +igB +aFM +tYK +aAw +aAx +aBt +aCi +aBX +aVl +axF +cLU +cLU +cLU +cLU +cLU +bcy +cLU +cLU +cLU +cLU +cLU +bgo +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(39,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +azq +azt +azk +azr +cec +esY +aGx +aFM +aFM +aFM +wsi +esY +axF +aBk +aRD +aBX +aVj +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aDF +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(40,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auN +bvY +azt +azk +azv +cec +esY +cwU +xVx +aFM +xVx +aIk +esY +axF +aBw +aRD +aBX +aVj +axF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(41,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auN +azu +azt +azk +aBr +cec +aDj +dHF +aFM +aFM +aFM +aCA +aDj +axF +aBv +aRD +aBX +aVj +axF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +cLU +cLU +cLU +cLU +aCj +aCj +aCj +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(42,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auN +asz +aAt +azk +aAn +cec +aDj +aIy +gOE +aFM +xVx +itc +aDj +axF +aBB +aRD +aEz +aVm +axF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +cLU +cLU +cLU +cLU +aCj +czj +cAi +aQd +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(43,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aqD +asA +asA +auN +asy +aAE +azk +aAm +cec +esY +aMV +aMV +aDK +aMV +aMV +esY +axF +aBx +aRD +aDq +aVj +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aCj +cze +czy +aQc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(44,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +aqD +aqD +aqD +aqD +aqD +aqD +aqD +avL +aym +auN +avY +aAE +azk +azr +cec +esY +aNP +eKH +etN +eKH +oWh +esY +axF +aBk +aRD +aDq +aVj +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aCj +czq +cAk +aTw +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(45,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +cLU +cLU +cLU +atX +atX +atX +art +aqQ +asA +avc +axx +auN +ctA +aAE +azm +aAo +cec +esY +aGH +nOM +lfJ +nOM +dEE +esY +axF +aBC +aCn +aDq +aVl +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aCj +czk +bsL +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(46,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aph +aaf +cLU +cLU +ato +apC +afB +awB +atQ +auf +auW +axx +atZ +cul +aAE +ayZ +cec +cec +esY +esY +aGb +aGb +aGb +esY +esY +axF +axF +aBV +aDq +aVj +axF +aaf +aTw +aNl +aCj +aaf +bgo +aaf +aTw +aOd +aCj +cLU +aCj +bgw +bsP +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +dNS +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(47,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +cLU +atX +atX +atX +art +atq +avy +avM +axx +atZ +aCt +aAE +azp +cec +cLU +itS +aEI +aEI +aEI +aEI +aEI +itS +cLU +axF +aCe +aCB +aVj +aBI +aCj +aCj +bhr +aCj +aCj +bgo +aCj +aCj +blS +aCj +aCj +aCj +bgw +bsP +bcy +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(48,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +aaf +aaf +aqD +aqD +aqD +aqD +asA +awe +ayq +ayO +azl +aDA +cCP +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aRI +aDq +aVo +cBu +aYo +aDF +aGB +aDF +beq +bgr +beq +aCj +aTj +aCj +bnu +boZ +bht +bsQ +bgo +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(49,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +cLU +aaf +cLU +aud +aud +aud +arV +aqQ +asA +awI +ayo +atZ +aEY +cvg +cvt +aFN +cxe +cxt +cxt +cxt +cxt +aGV +cxt +cxI +cxJ +cyG +cyL +cza +aVn +aWF +aYn +aZO +bbz +bdi +bep +bdH +bhu +aZO +bkq +aZO +bnt +boY +bho +bsP +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(50,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +cLU +cLU +cLU +atu +asx +ahM +awC +atQ +auV +awG +ayo +atZ +ayy +aFB +aFL +aFP +aCw +aDo +aEL +aEL +aHI +aJt +aLt +rUP +aOK +rUP +rUP +aTt +aVp +aYK +aYp +aZQ +bbB +bdj +ber +bfL +aHN +bgY +bks +blo +bnv +bpa +brc +cJk +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(51,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aac +cLU +cLU +aud +aud +aud +arV +atq +avy +awJ +ayo +auN +auN +auN +auN +aBL +aBL +aBL +aBL +aBL +aIA +aIM +aJA +atJ +atJ +atJ +atJ +aPs +aJA +aIA +aQJ +aUC +aUC +aUC +aUC +bgr +aHM +bgr +bgr +bgr +bgr +bgr +bgr +bgr +bgr +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(52,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +aqD +aqD +aqD +aqD +aqD +aqD +aqD +cDc +ayr +ayS +avH +avH +avH +cum +aCE +aDz +aEN +aGf +aIA +aId +aLy +aMX +aRx +aQj +aRJ +aTv +aLy +aRp +aYq +cgL +aZX +aYq +aYq +aYO +aHV +bjp +aTl +bmg +biS +bpb +aMv +bsS +aQg +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(53,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aqD +asA +asA +auQ +aGr +aQi +avH +aBD +aCE +aDr +aEM +aGd +aHJ +aJE +aLu +aMX +aOg +cgu +aRJ +aTu +aLy +aRp +aYq +aZV +aZX +bdk +bes +aYO +beM +bjp +bkQ +bjp +aGt +bjp +bfd +aSr +bjp +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(54,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auQ +auQ +cnl +auQ +ayp +aBD +aCE +aDx +aES +aGj +atJ +aJH +aLy +aMY +aPh +aPh +aMY +rhM +aLy +aRp +aYu +aZX +aZX +aZX +bev +aYO +aJv +biT +bkR +aFa +bpm +bau +bki +boA +aGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(55,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +avZ +awd +atv +aMW +aRH +bye +aBz +aCE +aBT +aEO +aGh +aHR +aJH +aLy +aMX +aPh +aPh +aRJ +rhM +aLy +aRp +aYs +aZW +aZX +aZW +bet +aYO +aHZ +bjp +bkR +aFa +bnT +aYP +bhv +aYP +aGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(56,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aaI +aaI +aam +aaI +aaI +aaI +aam +aaI +aaI +aaf +ayl +ayl +ayl +aSN +aAj +aBD +aCE +aDI +aES +aGm +atJ +aJL +aLy +aNa +aIJ +aIJ +aNa +rhM +aLy +aRp +aYw +aZZ +aZX +bdm +bdm +aYO +aHV +bjp +bkS +bjp +aWM +bnF +bjp +bjp +bjp +aaf +crP +crP +crP +crP +crP +crP +crP +crP +crP +aaf +crP +crP +crP +crP +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(57,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ayl +aBD +aCE +aFH +aEU +aHj +aIA +aJK +aLy +aIA +aIA +aIA +aIA +aNV +aVs +aWI +aYv +aZY +bbD +bbD +bbD +bhC +aKV +bjp +bkT +bjp +aVr +bpR +bjp +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(58,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aop +apk +apV +cLU +aop +apk +apV +cLU +aop +apk +apV +cLU +cLU +cLU +cLU +ayl +aBD +aCE +aCE +aGP +aCE +aIA +aoS +aLy +aNb +aOP +aQk +aRP +rhM +aVu +aIA +aYz +bab +bbG +bbG +bbV +aYO +aMB +aSU +aTn +bjp +bjp +bkm +bjp +cLU +cLU +cLU +cLU +ctn +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(59,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +aaI +aaf +aop +apj +apV +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +cLU +ayl +aOB +bsi +bke +awV +axJ +aIE +aJO +aLz +aLz +aLz +aLz +aLz +aLz +aVt +aIA +aYx +baa +bbF +bdn +bew +aYO +aOh +bjm +aTm +bmV +bps +bqG +baj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(60,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +aop +apj +apV +aaf +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +cLU +ayl +aue +aCy +aDX +cxb +bdw +aIF +aJQ +aLA +aNf +aOR +ewE +aRQ +aTy +aVw +aIA +aYO +aYO +aYO +aYO +aYO +aYO +baj +bqU +aTq +aHq +blv +bqK +aKJ +aaf +cLU +apc +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aIo +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(61,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +cLU +auQ +aBP +aCx +auQ +awN +aFC +aFC +aLw +aFC +aLs +nvs +aLy +aIA +aIA +aIA +aIA +aTR +aHq +bag +bdo +beB +bfM +aKe +aSW +aTp +aHq +bnY +bqK +aKJ +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(62,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +cLU +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +aoN +aAF +aAF +aAF +aAF +aFx +aFC +aGQ +aJZ +aFC +aNg +aNB +aNg +aLK +bxH +aXe +aXe +aGw +aYQ +bbY +bdp +beF +bfM +aSW +cCO +bml +aHq +bnZ +bqK +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(63,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +cLU +aaf +acy +aaf +aaf +aaf +acy +aaf +cLU +cLU +acy +cLU +cLU +aoN +aoN +aoN +aAv +aBH +aEc +aAF +awX +aFC +aHS +aJS +aFC +aNe +aNz +wjf +aLK +aHq +aHq +aXe +aYR +bai +bai +bai +bai +bai +bai +bai +bmo +bmW +bmW +bqM +bnP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaI +aaI +aaI +aaI +aaI +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(64,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +alX +amL +amL +amL +alV +amL +amL +amL +alV +amL +amL +amL +alV +amL +awW +azj +aAy +aEE +aSE +awD +avi +awf +awZ +baz +aHU +aJG +aFC +wBc +aOV +scJ +aSV +aVA +aVA +aFj +aYC +baj +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bkW +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(65,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +aaf +aaf +acy +aaf +cLU +aaf +acy +aaf +cLU +cLU +acy +cLU +cLU +aoN +aoN +aoN +aAH +aBS +aAs +aDZ +aFh +aIK +ayN +aKa +aFC +aNi +aOU +wjf +aLK +aTS +aTS +aTS +aTS +aTS +bbZ +bdq +bbZ +bdq +bbZ +bdq +bbZ +bdq +bbZ +bpU +brG +cLU +cLU +cLU +cLU +cLU +bXm +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(66,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaq +aaI +cLU +aaf +aop +apn +apV +cLU +aop +apn +apV +cLU +aop +apn +apV +cLU +cLU +cLU +aoN +aAF +aAF +aAF +aAF +aHd +aFC +aFC +aFC +aFC +aEp +aOW +wjf +aLK +aTA +aUr +aWJ +aYD +bad +bbZ +bds +bbZ +bfN +bbZ +biV +bbZ +blq +bbZ +bkW +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaI +aaI +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(67,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aop +apn +apV +cLU +aop +apn +apV +cLU +aop +apn +apV +aaf +aaf +cLU +cLU +anX +amo +aCK +aDJ +aFk +aGu +aHY +aHY +auT +wBc +aOW +aQm +aLK +aTz +aTz +aTz +aTz +bac +bbZ +bdr +beG +beG +bhz +biU +beG +beG +bbZ +bkW +bnP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +aaf +aaf +crP +cto +aaf +cbO +crP +crP +crP +crP +crP +crP +crP +crP +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(68,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +aop +apn +apV +aaf +aop +apn +apV +aaf +aop +apn +apV +cLU +aaf +cLU +cLU +anX +aBU +aEd +aDM +bBh +bBi +bCu +bDu +bDx +bDI +bDS +bFi +aLK +aKp +aTz +aTz +aTz +baf +bbJ +bdt +beH +bfP +beH +bfP +bku +blr +bbZ +bkW +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +aaf +aaf +aaf +aaf +crP +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aam +aam +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(69,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aaI +aaf +aop +apn +apV +cLU +aop +apn +apV +cLU +aop +apn +apV +cLU +aaf +cLU +cLU +alL +ayC +aCK +aDL +aFn +aFn +aIc +aJT +auT +wBc +aOY +bDV +aLK +aJP +aTz +aWK +aWK +bae +bbZ +bbZ +bbZ +brG +brG +brG +brG +brG +brG +bkW +baj +aap +cLU +bpf +aQC +aRB +bpf +aRB +aRF +bpf +cLU +bqY +apc +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aIo +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(70,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aop +apo +apV +cLU +aop +apo +apV +cLU +aop +apo +apV +aaf +aaI +cLU +cLU +alL +ayC +aCK +aDO +aFn +aFn +aFn +aJX +auT +wBc +aOY +bFA +aLK +aTE +aTz +aWQ +aWN +bal +aXs +beJ +bfT +brG +bgi +bgi +bgi +bgi +brG +aTQ +baj +aap +cLU +aLF +bxR +bzl +aLF +bCE +bEf +aLF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aam +aam +aam +aam +aan +aam +aam +aam +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aam +aam +aam +aam +aam +aaf +aaI +aaI +aaI +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(71,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aaf +aaf +cLU +cLU +aaI +cLU +cLU +alL +aHQ +aCK +aDN +aFn +aFn +aFn +aJV +auT +wBc +aOY +bFx +aPp +aTz +aTz +cgH +aYA +bak +aTz +bdv +bfS +brG +bgi +bgi +bgi +bgi +wby +aTQ +bdP +aLF +aLF +aLF +bzK +bBu +aLF +bBu +bFb +aLF +cLU +cLU +bNr +bNr +bNr +bNr +bNr +bNr +tGo +bNr +bNr +bNr +noV +cLU +aQh +aaf +aaf +aaf +aaf +aaf +aam +aam +aam +aan +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(72,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aaI +aaI +aaq +aaI +aaI +aaI +aam +aaI +aaI +aaI +aaI +aaI +cLU +cLU +anX +ayC +aCK +aCh +aFr +aFn +aIi +aHY +auT +aNn +aPe +bFT +aRR +aTJ +aTJ +aXn +aYE +ban +bbN +bfO +bfT +brG +bgi +bgi +bgi +bgi +wby +aTQ +bdP +bhI +bkw +bvU +bxS +bzn +bqW +bwb +bEh +bdP +cLU +cLU +bNr +dkO +idh +tGf +vRS +lDi +vRS +rVT +tzU +rup +miB +cLU +aQh +cLU +cLU +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aam +aam +aam +cLU +cLU +aan +aam +aam +aaI +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +cKN +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(73,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +anX +ayC +aCK +aDP +aFn +aFn +aFn +aJY +auT +wBc +aPd +bFI +aLK +aTF +aVy +aWO +aWK +bam +bbc +aTS +aTS +brG +bgi +bgi +bgi +bgi +brG +bgq +bdP +bsT +brd +bvU +bxS +bzm +brd +bCG +bDL +bdP +cLU +cLU +fKm +dRD +iTt +tUa +vRS +qBY +vRS +idY +xJn +tpe +miB +cLU +aQh +cLU +cLU +cLU +aaf +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +aan +aam +aam +aam +aam +aaf +aaf +cLU +cKM +cLU +aaf +cLU +aaI +aaI +aaq +aaI +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(74,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anX +anX +anX +anX +ayC +aCK +aBW +aFn +aFn +aIm +aKi +auT +wBc +aPd +bFV +aLK +aTL +aTz +aTz +beI +bam +bbO +bgg +bgg +brG +brG +brG +brG +brG +brG +bhA +bsx +bsW +buC +bwd +bxT +bzp +bBm +bCH +bEi +aLF +cLU +cLU +bNu +fhb +oxE +tXh +wht +sdB +wht +hWZ +rPP +uRH +miB +cLU +aQh +cLU +cLU +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cKM +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(75,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anX +aBU +atd +atd +auL +aCK +aDS +aFs +aFs +aIj +aKd +aLC +aNo +aPf +bFI +aLK +aTK +aTz +aTz +aTz +bam +bbO +bgf +bgf +bgf +bgl +aTS +bdA +aSI +bdO +bgN +bdP +biY +buB +bwc +bwc +bzo +brd +bvU +bEi +aLF +cLU +cLU +bNB +bNr +bNr +ult +bNr +bNr +tGo +bNr +bNr +bNr +noV +cLU +aQh +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIu +cIu +cIu +cIu +cIu +aaf +cKM +aaf +cIu +cIu +cIu +cIu +cIu +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(76,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +aam +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aaf +anX +ayC +anX +aJw +ark +aCK +aEj +aFO +aIV +aHY +aKt +avu +aNq +aPg +bGh +aLK +aTN +aTz +aTz +aYG +bap +bbQ +bdC +bdC +bdC +bhD +aTS +aXe +bmt +bdP +bdP +bdP +bsY +buE +bwf +bwf +bzr +brd +bvU +bEi +aLF +cLU +cLU +cLU +aSC +aSC +uoa +aSC +aSC +uJB +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cbO +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIw +cIU +cIU +cIU +cIU +anD +anH +anD +cLL +cLL +cLL +cLL +cLP +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(77,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +abQ +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +anX +ayD +anX +anX +anX +aCK +aCK +aCK +aCK +aCK +aCK +aLK +aNh +aNC +aOS +aLK +aTM +aTM +aWR +aTM +bao +bbP +bdB +beK +beK +bhB +bkk +blb +bmu +bdP +bpe +blP +nIv +buD +bwe +brd +bzq +brd +bvU +bEi +aLF +cLU +cLU +cLU +bUb +bNg +hbt +wiC +bUb +aaf +aaf +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIv +cIv +cIv +cIv +cIv +aaf +cKM +aaf +cIv +cIv +cIv +cIv +cIv +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(78,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aam +aam +aaI +aaf +aaf +cLU +abW +cLU +aaf +cLU +aaI +aaI +aaq +aaI +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +alL +ayC +aoV +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +awn +aNr +hOb +aSz +aLK +aUe +aUe +aUe +aUe +aTS +aTS +aTS +aTS +aTS +aTS +aTS +blc +bmt +bdP +brd +brd +bsX +buD +bwe +brd +bzq +brd +bCG +bEi +aLF +cLU +cLU +cLU +aSC +bMs +gny +wAA +aSC +cLU +aaf +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +aam +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cKM +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aaq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(79,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +aaf +cLU +cLU +aaf +abW +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +alL +ayC +aoT +aaf +aBY +aBY +aBY +aBY +aBY +aBY +aaf +avV +aNr +aOW +bFI +auT +aTO +aVz +aWS +aUe +aGA +aXe +aXe +aXe +aXe +aSO +bjx +bld +bmt +bdP +bhG +bzq +bsX +buD +bwe +bxU +bzq +brd +bvU +bEj +bdP +buQ +bGt +bGt +bGt +bGt +fmR +otj +bGt +bGt +aaf +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +aam +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIu +cIu +cIu +cIu +cIu +aaf +cKM +aaf +cIu +cIu +cIu +cIu +cIu +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(80,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aas +aas +aas +aas +aas +aaf +abW +aaf +aas +aas +aas +aas +aas +aaf +aaI +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +alL +ayC +aoT +cLU +aBY +aCD +aDU +aFt +eaE +aBY +cLU +avV +aNt +aPj +bGj +aRS +aTT +aVC +aWZ +aUe +bav +bch +bdO +bdO +bdO +bif +bdO +ble +bla +bdP +biq +brd +bsX +buH +bwg +bxW +bzs +bxW +bxW +bEl +bdP +bIZ +pGo +bMg +bMg +bKI +bPb +vHf +xpO +bGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIw +cIU +cIU +cIU +cIU +anD +anH +anD +cLL +cLL +cLL +cLL +cLP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(81,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +aam +cLU +aar +aaw +aaw +aaw +aaw +abm +abU +abm +ada +ada +ada +ada +aer +cLU +afm +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +alL +ayC +aoT +aaf +aBY +aCC +gcu +gcu +aFv +aIQ +atU +axk +aNs +aPi +bFI +auT +aTP +aVB +aWY +aUe +baw +bci +bdP +bdP +bdP +bdP +bdP +blf +bdP +bdP +bhN +bzq +bsX +buF +brf +brf +brf +brf +brf +bEk +aLF +bJb +bKK +bKK +bKK +bKK +bPc +bKK +dMi +bGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIv +cIv +cIv +cIv +cIv +aaf +cKM +aaf +cIv +cIv +cIv +cIv +cIv +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(82,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aav +aav +aav +aav +aav +aaf +abW +aaf +aav +aav +aav +aav +aav +cLU +aam +cLU +cLU +cLU +cLU +abf +abi +abi +abf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anX +awb +axo +anX +ayE +aoW +cLU +aBY +aCF +aCG +gcu +aGv +aKj +aQG +aKm +aNu +aPl +bFI +aLK +aUe +aUe +aUe +aUe +bax +bbS +bdP +aGE +aZx +beP +bfV +bgk +bpn +bny +bpn +bpn +bta +buD +brd +bxX +brd +brd +bzu +bzu +aLF +bJb +bHB +bUk +bzL +bKK +bPc +bKK +fTj +bGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aac +cLU +cLU +cLU +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cKM +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(83,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +aaf +aaf +aaf +abW +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +abi +aid +agb +abf +abf +abf +abf +abf +abf +abf +anX +anX +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anX +awc +aso +anX +ayC +aoT +aaf +aBY +gcu +gcu +gcu +aFy +aIQ +atU +axk +aNr +aPk +bGk +aSZ +aUi +aUi +aUi +aUi +aKg +bbR +bfe +aMA +aMS +beN +brf +bfX +bhJ +bdP +bpk +brf +bsZ +buI +hkD +bdP +bBn +bCn +bEm +bHg +aLF +bJb +bKH +bUk +gdx +jfD +bPc +bCx +bGt +bGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIu +cIu +cIu +cIu +cIu +aaf +cKM +aaf +cIu +cIu +cIu +cIu +cIu +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(84,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aan +cLU +aas +aas +aas +aas +aas +aaf +abW +aaf +aas +aas +aas +aas +aas +aaf +aam +cLU +cLU +cLU +cLU +abi +aeU +agb +ajA +agB +adE +adE +adE +adE +anv +anY +anX +alL +alL +alL +alL +alL +anX +anX +anX +arC +axb +cgn +ayC +aoT +cLU +aBY +aCD +aDW +aEa +aGz +aBY +cLU +avV +aNr +aPm +bGl +aLK +aLK +aVG +aVG +aVG +baj +bbT +bdP +aXM +bzo +brd +bfU +bsX +bhX +bdP +bqh +aKR +btd +buK +aKR +bdP +bdP +bdP +bdP +bdP +bdP +bpd +bLX +xeI +bKK +bKK +bPc +bKK +bDH +aSC +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cIw +cIU +cIU +cIU +cIU +anD +anH +anD +cLL +cLL +cLL +cLL +cLP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(85,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aar +aaw +aaw +aaw +aaw +abm +abU +abm +ada +ada +ada +ada +aer +aaf +aam +cLU +cLU +cLU +cLU +abi +axX +aiD +abf +afZ +agD +agD +amy +agD +agD +ajF +auc +auc +auc +ark +asX +asb +alo +amo +anX +arz +awR +anX +ayC +aoT +aaf +aBY +aBY +aBY +aBY +aBY +aBY +aaf +avV +aNr +aPm +bFI +aUa +aLK +aVH +aXp +aVG +bnZ +blc +bdP +aXM +bzo +bfU +brd +bhE +brd +bdP +bpq +bri +btc +buJ +bwh +bxY +bzv +bBq +bCM +bpo +bGt +bJb +sgI +iKS +bMh +bJb +bPc +bKK +bDH +aSC +cLU +cLU +cLU +cLU +cLU +apc +aQh +aQh +apc +aaf +cLU +cLU +cLU +cLU +cLU +apc +apc +apc +apc +apc +cLU +aac +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIv +cIv +cIv +cIv +cIv +aaf +cKM +aaf +cIv +cIv +cIv +cIv +cIv +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(86,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aav +aav +aav +aav +aav +aaf +abW +aaf +aav +aav +aav +aav +aav +aaf +cLU +cLU +abf +abf +abf +abf +abf +abf +abf +aga +agD +alr +ahK +amN +agD +agU +apb +apb +apb +apb +apb +apb +apb +anY +anX +arX +asB +axI +ayG +ape +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +axs +aNr +aPn +bGm +aQl +aVI +aCq +aKf +aVG +aKh +aKk +bdP +ccN +beL +brd +bfW +bhH +bFN +bog +bpt +brk +btg +buM +bwj +bga +bga +bga +bga +bEq +bGt +fPv +bGt +bGt +xeI +bJb +buo +cUO +bGt +bGt +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cKM +cLU +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(87,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abW +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +abi +aeT +afy +aiD +aix +agb +agb +afZ +agD +agC +ahK +amM +apM +apM +apM +apM +asw +asw +asw +asw +asw +afo +apb +arR +axc +apu +ayD +anX +anX +anX +anX +anX +anX +anX +anX +anX +aLK +aNv +aPm +bFI +aRT +aLK +aKc +aXr +aVG +baj +bco +bdP +bdP +bdP +bdP +bdP +bdP +blf +bdP +bqk +bqa +btf +buL +bwi +brk +brk +bBs +brk +bEp +bGt +bHA +bJa +jsn +bMi +bKK +btV +bCy +bRV +aSC +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cKM +cLU +cLU +cLU +cLU +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(88,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aas +aas +aas +aas +aas +aaf +abW +aaf +aas +aas +aas +aas +aas +cLU +cLU +cLU +abi +agB +adE +adE +adE +adE +ajl +agc +agD +agQ +ahB +ajB +apM +aqF +arW +ast +asN +asR +auh +avq +asw +auo +aCd +azg +aul +awT +ayA +azO +azO +azO +azO +azO +azO +azO +azO +azO +aNX +aNx +aPo +bGn +aRV +aLK +aVK +aRs +aVG +bbL +bco +bdD +bfi +bfi +bfi +boi +boh +blm +bfm +bqk +brm +btz +buP +bwo +bwo +bzx +bBt +bwo +bEt +bFZ +bHD +bJd +bJd +bMl +bNt +bPm +bDR +bRV +aSC +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cKM +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(89,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aar +aaw +aaw +aaw +aaw +abm +abU +abm +ada +ada +ada +ada +aer +aaf +cLU +cLU +abi +afZ +ahi +ahi +ahi +ahi +ahi +ajH +agD +alP +ahy +aiC +apM +aqx +arM +ass +asN +asO +atY +avn +asw +anX +anX +anX +anX +anX +ayI +apD +apD +apD +apD +apD +apD +apD +apD +apD +aLK +aNw +aPi +hgF +aQq +aLK +aUm +aUm +aUm +aUm +bcp +bdS +beQ +bfZ +bhK +bfm +bfm +blB +bnz +aJx +brl +aLL +buO +bwl +cFY +bzw +bga +bga +bEs +bGt +bHC +bJc +bKK +bMk +bNs +bPi +bCA +bRV +bGt +aaf +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cKM +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(90,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aav +aav +aav +aav +aav +aaf +abW +aaf +aav +aav +aav +aav +aav +aaf +cLU +abf +abf +afZ +ahi +ahS +aiA +aiY +ahi +akW +agD +agD +aiB +agD +apM +arx +arZ +arx +asN +asN +auj +asN +asw +aie +aie +aie +aie +anX +axM +apD +aAB +aBM +aBM +arS +aCP +aGl +bdL +bUO +aLK +aNy +aPi +hgF +aRW +aLK +aVE +aXd +aYH +bar +bcp +bdS +beS +bgh +bgh +biZ +bkB +blC +blC +bpu +brp +bfm +bfm +bwr +aMh +aMh +bBv +aMh +bGi +bGv +aQO +aQO +aQO +bMn +bGv +bGv +bEU +bGt +bGt +aaf +bVO +bUu +bVO +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +cLU +cLU +cmQ +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(91,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +cLU +abW +cLU +aaf +cLU +aaf +aaf +aaf +cLU +cLU +abf +att +afZ +ahi +afQ +aio +aiX +akx +ajW +akI +alv +aic +amS +anI +aor +arY +alv +apW +aru +aui +arn +agD +aie +aie +aie +aie +anX +axM +apD +aAA +aBJ +aCL +aEb +aFA +aGK +aIp +aKl +axv +wBc +aPi +hgF +aNk +auT +aVD +aVM +aXg +baq +bcp +bdS +beR +bga +bga +bga +bga +bga +bga +bga +brn +bfm +cqb +bwp +bya +bzy +bgh +bCN +aQO +bGe +bHE +bJe +bKM +bMm +bNz +bGv +bEe +bNx +bNx +bUv +bVO +bUY +bVO +bZf +bfY +bsR +cej +cej +aZR +aZR +aZR +aZR +aZR +cej +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cIc +aaf +aaf +bBp +cLK +bBp +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(92,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +cLU +cLU +cLU +cLU +abW +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abf +afT +afZ +ahi +ahU +aiF +aja +akR +ajY +akK +aly +aly +aly +anJ +aot +asr +aoD +aly +arv +aur +asK +agD +awy +awy +awy +aie +anX +axM +apD +aAD +aBO +aCO +aEg +aFF +aGR +aIt +aKo +aLG +aNA +aPq +bGp +aQG +aTU +aVL +aXh +aYI +aUX +bcp +bdT +bfm +bez +bga +bga +bkC +bga +bga +bga +brt +bhx +bga +bga +byb +bga +bga +bga +aQO +crb +bHH +bJg +bKO +bMo +bNH +bGv +bFE +bFO +cxK +bUv +bVO +bVM +bVO +bZf +bhs +bvV +cej +bPe +cgU +cgU +cgU +cfJ +cgU +cnq +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cHK +cLU +cLU +aaf +bBp +bXk +bBp +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(93,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaq +aam +aaf +cLU +cLU +cLU +cLU +abW +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +abf +afU +afZ +ahi +ahT +aiE +aiZ +akR +ajX +akJ +ahX +ahX +alz +alW +arL +asc +arL +alW +arL +aun +arL +agW +awx +aQs +awy +awy +anX +axM +apD +aAC +aBN +aCN +aEf +aFA +aGN +aIs +aKn +axv +qHU +xFu +hgF +aRX +aLK +aVF +aXg +aXg +bas +bcp +bdS +bfm +bgj +bga +bga +bga +blE +bga +bpw +brt +bfm +buS +bga +byb +bkC +bga +bga +aQO +bHF +bHF +bJf +bKN +bMo +bNG +bGv +bQv +bVT +cxK +bUv +bTZ +bVN +bTZ +bZf +bgb +buy +cej +bOS +cgU +cfJ +chf +cgU +cgU +chi +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +bBp +bBp +cfv +bBp +bBp +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(94,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +aaf +aaf +cLU +aac +cLU +abW +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +abf +aeV +afZ +ahi +ahW +aiH +ajb +alq +aka +akL +alA +ama +amU +alW +aov +amQ +apY +alW +aov +ase +apY +awv +aFq +awv +awv +awy +atc +axM +apD +aAG +aBM +aBM +asu +aCQ +aGS +aBM +aJc +aMb +aNp +aOQ +aOT +aMb +aUm +aVM +aXi +aXg +baB +bcq +bdU +bfm +bgs +bhL +bja +bkD +blH +bnA +bfm +brx +bfm +buT +bws +byf +bga +bBw +bCb +bGv +bGs +bGK +bJi +bKP +bMp +bNI +bGv +bQv +bFL +bFR +bNx +bVS +bbA +bJR +bZg +bjF +buy +cnp +cep +cgU +chf +chf +chf +chf +chf +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cGQ +cHq +cGQ +cHq +cLU +cIK +cmD +cng +cLs +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(95,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +abZ +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +abf +avk +adQ +ahi +ahV +aiG +ahT +akR +ajZ +akJ +alz +alz +amT +alW +aou +amA +apX +alW +ary +asd +asM +awv +axe +aQt +aQt +awy +axK +axM +apD +apD +apD +apD +apD +apD +apD +azI +apD +aMb +aNE +vcu +bHh +aMb +aMb +aBs +aBs +aBs +aBs +aMb +aMb +aMb +aMb +aMb +aMb +aBs +blF +aBs +aMb +brw +btC +aLR +aLR +byc +bzz +aLR +aLR +btC +btC +btC +btC +btC +btC +bGv +bGv +bQv +bFL +ccx +bNx +bNx +bHt +bNx +bZg +bLM +bzd +cej +ccY +chf +chf +chf +chf +chf +chf +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cGR +cGR +cGR +cGR +cLU +cIK +cKr +cEw +cJT +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(96,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaJ +aaf +aaf +abd +abX +abe +aaf +aaf +aaf +aaf +cLU +cLU +cLU +abf +afZ +aha +aha +aho +aho +aho +aho +akc +akN +alW +alW +alW +alW +ajy +ank +ajy +alW +ajy +asg +ajy +awv +aJU +aQy +byW +awy +axL +ayJ +azQ +azQ +azQ +azQ +azQ +azQ +aHn +aIW +aKC +aMb +aNE +aLM +kVV +vcu +aTV +vcu +vcu +vcu +vcu +bbt +beU +vcu +bgu +bfR +bjb +bkE +bkE +bkE +bpz +brz +bti +bBx +bBx +byh +bzC +bBx +bBx +bEu +bBx +bBx +bBx +bKQ +btC +bvF +bKm +bNl +bYE +cbr +bSj +ccz +bIs +cxK +bZg +bMN +cbu +cej +cfx +cfG +cgO +cjL +chf +cms +cnr +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cGR +cGR +cGR +cGR +cLU +cIK +cJn +cMg +cLQ +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(97,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +abe +acf +abd +aaf +aaf +aat +aat +aat +aat +aat +aeW +afZ +aha +ahj +ahl +ahl +aje +aho +ajZ +akM +anc +amb +amV +ajd +aow +amR +app +aqN +aoy +aoz +avr +awv +aIh +aQx +byP +awy +axM +auc +aIl +auc +aJw +anX +aub +aFW +aHo +aIX +aKD +aOi +aND +aPt +bgA +aRY +aRY +aRY +aRY +aRY +baC +bbU +bdF +sCJ +bgt +aRY +aRY +aRY +aRY +aRY +bpy +bry +bth +buU +buU +byg +bzB +bzB +bzB +bzB +bzB +bzB +bJk +ouk +btC +bux +bvS +bQw +bxI +bTn +bRS +bRS +bUM +bNx +bZg +bmL +bKn +cej +cej +cej +cej +cmm +cej +cej +cnD +cnD +bMI +bUg +bUg +cfE +cLU +cLU +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cGR +cGR +cGR +cGR +cLU +cIK +cJa +cJG +cIK +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(98,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abe +abe +abz +abd +abe +cLU +aat +aoq +aoq +aoq +aoq +aeW +afZ +aha +ahm +ahZ +ahZ +aji +alB +ake +akP +ani +ame +amX +anK +aoy +amR +aoy +aoz +aoy +aoz +avr +awv +aMx +awv +awv +awy +axM +ayL +ayL +ayL +ayL +ayL +ayL +ayL +ayL +ayL +ayL +aJe +aNI +aPu +bca +aLQ +aLQ +aLQ +aLQ +aKF +baD +bca +bgC +aLQ +aLQ +aLQ +aLQ +bFK +blL +bnB +bpA +brA +btj +buk +bwz +byi +bzH +bzH +bCP +bEx +bGu +xZr +bJm +bKS +bNQ +bOX +bOZ +bQx +bNw +cct +bNw +bVU +bII +bKg +blx +byk +bLu +cey +bLP +bNv +cbv +cjN +ckM +bwP +bxG +bLY +bPC +cbZ +asD +cfE +cLU +cLU +cfE +cmj +cmj +cmj +cmj +cmj +cfE +bxK +bxK +bxK +bxK +bxK +bxK +cLU +cGS +cGS +cGS +cGS +aaf +cIL +cld +cMh +cLv +cKg +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(99,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abd +aaK +aci +acB +abd +cLU +aat +aoq +aoq +aoq +aoq +aeW +afZ +aha +ahl +ahY +aiI +ajg +aho +akd +akO +anc +amc +amW +ajd +aox +anZ +aqa +aqO +arB +aqO +avs +aww +aLB +aQz +awm +atx +axM +ayL +aBa +aBa +ayL +aBA +aCV +ayL +aGT +aIB +aNO +aJe +aMk +aPu +eEV +auk +auk +auk +auk +aNJ +aLM +bbW +bdY +bdY +aEA +aEG +aEK +bdY +bmG +bmG +aJu +aHB +bmG +bmG +bwt +aLR +aLR +aLR +aLR +bEw +bGB +ixD +bJl +bKL +btC +bNx +aSK +aSK +aSK +aSK +aSK +bNx +bNx +bNx +blw +bra +ccC +cew +cfH +bMS +bQe +ccB +bwN +bwO +bxc +bxJ +bNP +cbU +asI +cfE +cfE +cfE +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cDh +cDy +crR +cEV +cDh +bxK +cBN +cHR +cHR +cHR +cHR +cIp +cIL +ckX +cJI +cJW +bCo +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(100,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abd +abu +abY +acx +abd +cLU +aat +aoq +aoq +aoq +aoq +aeW +afZ +aha +aho +aij +aho +aho +aho +ajZ +akJ +alW +alW +alW +alW +aoz +aoa +aqc +aqS +arF +asi +asP +aoz +aNm +aQA +awp +atx +axM +ayL +azy +ayM +ayL +aBG +azy +ayL +azy +azy +azy +aJe +aNH +aPu +eEV +auk +aaf +cLU +auk +aNJ +baF +bcc +bdY +bfn +biv +bio +bkH +bmE +bmG +bgp +bjh +bmi +bpi +bmG +bwB +byj +byj +byj +bCQ +byj +btC +bHL +bJl +fKS +btC +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abw +bYI +bYI +bYI +bYI +bYI +bZc +chk +aZU +aZU +aZU +clg +cfE +bMc +bSh +ahP +asL +cfE +cik +ckT +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cDm +cDU +cbw +cDU +cGc +cHa +cBN +cef +cIx +cIx +cJj +cIr +cIL +ckX +cJI +cJe +bCo +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(101,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aah +aap +aal +aah +aaf +aaf +aaf +abd +aai +abV +acz +abd +cLU +aat +aoq +aoq +aoq +aoq +aeW +afZ +aha +ahn +aia +aiT +ajr +alH +akf +akQ +ant +amf +amY +ajh +aoz +aoz +aqb +aqR +aIq +asi +aoz +aoz +avo +aoy +aoI +atx +axM +ayL +azx +apK +ayL +apK +aEk +ayL +apK +aIC +apK +aJe +aNG +aPu +eEV +auk +aaf +cLU +aJe +aZh +baH +bcg +bdY +bgM +bgO +bip +bgO +bls +bmG +bnC +bpB +brB +bmG +bmG +cco +bro +bto +bvw +bvw +bvw +btG +bHK +bJn +bKT +btC +cLU +aSL +aTc +aTx +aTc +aUc +cLU +cLU +aVQ +bZY +cbx +bVn +bYI +cix +chj +ciu +chI +aZU +bRq +cdP +bMa +bRW +all +avT +cgE +cij +ckK +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cDi +cDA +cEk +cEn +cEk +cGZ +cBN +cGC +bTm +cIV +cJi +cIq +cIL +ckX +cJI +cJe +bCo +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(102,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aag +aap +aap +aap +aak +aax +cLU +cLU +aaf +abd +abr +acb +abd +abd +abf +aeW +aeW +agb +agb +aeW +aeW +afZ +aha +ahq +aia +aia +ajR +alM +aki +akS +anx +amh +ana +anL +aoA +apA +aqe +aqT +arG +ask +asQ +asQ +aOX +aQD +aws +atx +axM +ayL +azA +aAL +aBZ +aCS +aEl +aDR +aGU +aEl +aKs +auk +aNI +aPu +eEV +auk +cLU +cLU +aUp +aCp +baP +aDH +bdY +bfp +bgP +bfj +bhd +bmy +bmG +bnc +bpD +bsa +bmG +buY +bwG +bIV +bzJ +bBz +bCS +bEg +btG +bHN +bJp +fKS +btC +cLU +aSM +bEb +ctb +bIR +aSM +cLU +cLU +aWc +bZZ +cby +ccH +bYI +cfM +chm +ciw +cjQ +clc +cmA +cgM +bMf +bTV +cdC +cfD +cfE +cjI +ckW +cfE +cfE +iXX +iXX +iXX +cfE +cfE +cDt +cpD +cEn +cEn +cEn +cHg +cBN +cGI +bTB +cIX +cJl +cIs +cIL +cJf +cLJ +cJX +bCo +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(103,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aah +aap +aap +aak +aao +aat +cLU +cLU +aaf +abi +abt +acj +acu +ade +ade +ade +ade +aeg +ade +apU +ade +afq +aha +ahp +aim +aiV +ajw +alI +amu +amZ +ahb +amg +aoM +ajp +aoz +apz +aqd +aoz +aoz +aoz +aoz +aoz +aoz +aqd +awr +atx +axM +ayL +azz +aAI +aBQ +aKr +azy +azy +aKr +azy +aKr +fnT +aNI +aPu +eEV +auk +cLU +aaf +aUp +aZi +baK +bcI +bdY +aXG +bex +bir +bjI +bma +bmG +bnD +bpC +brD +bmG +buX +bxi +bxk +bxk +bBy +bCR +bEy +btG +bGq +bJl +fKS +btC +cLU +aSM +bQI +bRX +bPf +aSM +cLU +cLU +bYI +aXb +aXb +ccF +bYI +bZr +chl +civ +cjP +aZU +cmy +cnG +cnG +bKG +bKG +cnG +cnG +cip +ckU +ckY +cnx +coz +cdC +cdC +cps +bwE +ckf +cDV +cEE +cFt +cDV +cHf +cBN +cHT +cLS +cLZ +cMa +cMb +cIt +cJg +cLC +cJX +cKg +aaf +cLU +cLU +cLU +aaf +abc +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(104,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aah +aah +aaj +aah +aat +aat +aaf +cLU +abh +abh +abh +abh +acp +acp +acp +acp +acp +acp +agb +aed +agb +agn +aha +ahs +aiw +aiW +akh +alS +akl +akV +agW +amj +anb +alW +anr +aoz +aqg +aqV +arH +asn +asS +aty +aup +aqd +awt +atx +apQ +aqs +azC +aAN +aCb +aCU +aEn +aGY +aKy +aIG +aGW +aLI +aNK +aPu +aNR +aJe +klA +aUp +aUp +aUp +baU +aUp +bdY +bfr +bex +bis +bjJ +bjE +bmG +bvG +bor +bsA +bmG +bva +bxj +byH +bxk +bBA +bCU +bEA +btG +bHM +bHO +bHM +btC +bNy +aSX +bQC +bUo +bTr +aSX +bNy +aVv +bYI +bgc +aXb +ccK +bYI +cbD +cho +ciy +ceQ +aZU +cmB +bKG +bQa +qJW +cjw +cnB +bjV +cjK +cma +cpo +cpo +cpr +cpo +aXo +aYX +cEJ +cDj +cDj +cEp +bZR +cFA +cGd +cLe +cHU +bVB +cIY +coT +cJD +cIL +ckX +coC +cJY +cKg +aaf +aaf +cLU +cLU +cLU +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(105,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +abh +abh +abB +abh +abh +acp +ahw +ajm +cuS +acp +acp +aey +aed +aeT +agn +aha +ahr +aiv +aia +akb +alR +akj +akJ +alJ +ahX +alQ +ajq +aoB +aoz +aqg +aqU +asW +asW +asW +asW +aOZ +aQE +aOZ +atg +axM +ayL +azB +aEm +aCT +aCT +aEm +aCT +aEm +aNN +aPx +auk +aNJ +aPu +eEV +auk +klA +mwu +aXu +aYM +baJ +bcf +bdZ +bfs +bgR +bfB +bhf +bkG +bmG +bmG +aKP +bmG +bmG +buZ +bxk +byI +bxk +bBy +bCT +bBy +btG +bGr +bJl +fKS +btC +bOL +bQj +bSl +bRX +bIW +bWI +bQB +aVv +bXd +cab +cbz +ccI +aXU +bZV +chn +cix +ceh +aZU +cmB +bKG +cjw +bSt +cju +cjw +cpW +cjJ +ckV +clX +cow +coA +cpp +cpq +cpu +bwE +cDu +cDW +cEo +bZQ +cDW +cDW +cGt +cmc +cmo +uGq +cmr +cmc +cGt +cGt +cGt +cGt +cGt +cLU +aaf +aaI +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(106,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +cLU +cLU +abh +abv +acE +adM +abh +acA +add +adz +add +cuU +acp +adR +aed +aeU +agu +ahg +ahE +aiy +aiy +akk +alY +aki +akX +alO +amk +anf +aju +ajC +aoG +apr +aqX +ata +auu +awh +asW +aQa +aQH +bAZ +atg +axM +ayL +azG +azS +aAP +aCW +aFJ +aIH +azS +ayL +aKx +axB +aNL +aPv +eEV +auk +vKw +sfM +aXl +aYS +baN +bcj +bfo +bft +bgS +biu +bjL +bkJ +blN +bnE +bpI +brI +btl +bvd +bwK +bym +bqF +bqH +bwK +bEB +byp +bHR +bJp +fKS +btC +bON +bPf +bPf +bRY +bPf +bPf +bVW +aVv +cfT +cae +cbC +kvT +bno +aYr +chq +ciI +aYr +aZU +cmE +cnG +bRf +bYH +cnA +coE +bjV +cns +cny +bql +bql +cmu +bql +bql +coB +bsy +cDk +cDk +cDk +cDk +cDk +cDk +cGt +apm +cIC +cIZ +cJs +cHb +cIQ +cLI +bIM +cnE +cGt +cLU +cLU +aaI +cLU +cLU +crP +aap +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(107,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +aaA +cLU +cLU +abh +abg +acv +adw +abh +ags +add +acH +add +cuT +acp +aaT +aaT +aaT +aaT +aaT +adD +aib +aeJ +aiz +aeF +akm +akJ +alN +ahX +ane +ajs +ajz +aoz +aqh +aqW +asY +aut +avt +asW +aPc +aQF +bAY +atg +axM +ayL +azF +aAO +aCc +ayL +aEo +aFI +aLH +ayL +aKw +aJe +aQN +jHW +aQN +aUp +aUp +aUp +aXk +aYN +baL +bcn +bdZ +bfu +bgv +bjM +bly +bdY +bmG +bmG +bmG +bmG +bmG +bvw +bvw +bvw +bvw +bvw +bvw +bvw +btG +bHQ +bJn +bKR +btC +bOM +bPg +aWB +bRZ +bLa +bPf +bQE +aVv +bYL +cad +cbB +cbY +bno +cfO +chp +ciH +cjT +cgo +cmC +cnG +coG +bVY +cnz +coD +bjV +cil +cvy +bql +cyU +cmt +cot +bql +bTW +cCq +cDk +cfj +cEF +cac +bKx +apl +cGt +cfB +cfz +cHD +cpX +cHb +cHb +cJo +bIM +bIM +cmc +cLU +cLU +aaI +cLU +cLU +crP +cLU +cLU +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ngU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(108,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +cLU +aaB +cLU +cLU +abh +aby +acI +aeh +abh +aht +add +ady +add +adC +acp +aeM +afg +afF +cuX +adD +ahu +ain +aiK +ain +adD +akl +akJ +akF +amm +apw +aoF +ajG +alx +amw +amO +atg +avj +awl +atg +auU +bjr +bBa +atg +axM +ayL +azy +azy +azy +ayL +asC +azy +atF +ayL +aKw +auk +aNJ +aPw +eEV +azo +aUb +aVO +aXm +aYU +baR +aUp +bdY +bdY +bdY +bdY +bdY +bdY +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +bAh +bCK +bCO +bBP +btG +bHT +bJl +bKY +btC +bBr +bPh +aYg +bsV +bND +bUB +bTb +aVv +bYP +cag +cbE +bVq +bno +cfO +chs +ciH +cjV +ciH +cmB +bMH +cjw +bYN +crf +coH +cpY +cio +clx +bql +cla +cnw +cov +bql +bUl +bVw +bYM +bZn +bZD +cbj +cGi +cHm +cGt +cId +cIG +cHF +cHZ +cHb +cHb +cHb +cHb +cHb +cGt +cLU +cLU +csM +cLU +cLU +crP +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(109,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +abh +abx +acF +aef +abh +agt +add +ady +add +adA +acp +aeL +aeM +afE +cuV +adx +cuZ +ain +ain +ajj +alZ +akl +akY +agD +amd +apq +ajv +aoL +apE +aqj +aqY +ate +avh +awk +atg +aQn +aUd +aQn +atg +axM +ayL +atN +azT +aCf +ayL +aCm +azy +aLJ +ayL +auk +auk +aEV +aPw +eEV +azb +aUl +aVN +aVR +aXO +aUp +aUp +beb +beb +beb +beb +bhk +beb +beb +beb +beb +aPb +aUk +aYc +bxr +bxr +bAh +bCI +bCV +bGC +btG +bHS +bJl +bKX +btC +bAd +bPf +csb +bSb +bNC +bPf +bQJ +aVv +bYO +caf +bUa +ccO +bno +cfP +chr +ciJ +cjU +cle +cmF +bKG +coG +cqa +cre +csn +bjV +cuo +cvA +bql +ckZ +cmv +cyV +bql +bUh +bUC +cDl +bZh +bZC +cai +cGf +cHl +cLf +cIb +cID +cHb +cHY +cHb +cHb +cHb +cHb +cHb +cGt +aaf +crP +crP +aaf +crP +csM +aaf +crP +crP +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(110,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +cLU +cLU +cLU +cLU +cLU +abh +abA +adc +afI +acg +acK +acK +adG +acK +ael +aes +aeO +afi +afH +aeO +agX +cva +aih +aiL +cvh +ajT +aks +alb +anA +akr +amp +amp +amp +apH +aqk +ara +atw +avl +awu +atg +aQr +byw +bBc +atg +axM +ayL +ayL +ayL +ayL +ayL +aFK +azy +azy +aFI +aDT +aQI +aNF +aPy +aQK +aLO +aAJ +aVR +aVR +aYW +aUp +aaf +beb +byl +bmI +biw +bkK +blz +bmI +boX +beb +bob +buG +bwn +bpM +bxr +bzM +bBE +bCX +bEC +bGw +bHW +bJs +bLb +btC +bNE +bPn +bQK +bSb +bTw +bSF +bTi +aVv +aWV +cam +bYI +aWV +bnp +ccE +chu +ciH +cjW +clf +ciC +cnG +bRv +cpx +cpx +cpz +bjV +cur +cvC +bqL +brC +brF +bsq +bql +bUp +bXH +ckE +cDJ +cDJ +cbA +cDJ +cDJ +cGt +awa +cIN +cHb +cHY +cJF +cJU +cKu +cKu +cKu +cGt +aaf +aat +aaI +aaf +aat +cts +aaf +aat +crP +aaf +aat +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(111,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abc +cLU +cLU +aac +cLU +cLU +abh +abh +abh +abh +abh +acJ +add +adF +add +aek +acp +aeN +afh +afG +cuY +adx +ahv +ain +ain +cvf +alZ +akn +ala +anA +amn +amp +amp +amp +amp +aoP +aqZ +arA +arA +arA +arA +arA +arA +arA +arA +azn +ayL +axN +aAr +aAr +ayL +ayL +ayL +ayL +ayL +aPE +aLM +aLM +aPu +aNR +azb +aAu +aVP +aVP +aYV +aUp +aaf +beb +bgU +bgx +bhQ +bkn +blA +blR +bFo +bpK +bsB +btL +bvH +rwB +bxr +bFv +bBC +bAh +bAh +btG +bHU +bJr +bKZ +btC +bNF +bNF +bNF +bSc +bNF +bNF +bNF +bNF +bYS +cah +cbF +ccR +cez +cbF +cht +cbF +cbF +cbF +uKl +cnJ +bjV +bLn +bLn +bjV +bjV +cdJ +cvy +cwm +cwm +cyv +cyv +bsy +bUm +bUC +bxN +cEd +cEI +cbt +cGk +cqL +bAP +cIe +cIJ +cHb +cHY +coF +cGt +cmM +cmM +cmM +cGt +aaf +crP +aaI +aaf +crP +crP +aaf +crP +crP +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(112,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abh +acp +adg +adH +adN +acp +acp +aei +aeY +afG +agx +adT +ahC +aik +ain +aiU +adT +akn +ald +anz +anj +anj +anj +aoQ +anj +aql +arc +arO +atb +atj +atA +auw +avv +awz +axf +axQ +ayv +azU +azU +azU +azU +azU +azU +aHb +aQI +aNF +aLM +aLM +aPA +eEV +azb +aXQ +aVU +aVU +aYY +aUp +aap +beb +bfv +bhS +biy +biy +bmH +bmK +bow +beb +bom +btm +bvf +btm +bxr +bys +bBG +bEr +cLU +btG +bHX +bJu +dNC +bJo +bLf +bMq +bQM +bSe +bTp +bNJ +bPp +bNJ +lyt +cao +bYV +ccU +bYV +bYV +chx +bYV +bYV +clh +cmI +cnF +vno +vno +vno +css +ctu +cuo +cvy +coK +coK +coK +coK +sYh +bUh +bUC +bxN +ckQ +cEL +ccf +cGn +cpE +bAP +cGV +cHu +cJd +cJt +cJJ +cLE +cKw +cLh +cLh +cGt +cKx +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(113,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +abw +acp +acp +adf +adf +adf +acp +acp +aeF +aeP +afr +aeF +aeF +ahz +aii +aiM +aeF +aeF +akt +alc +anA +amn +amp +anM +aoP +amp +aoP +arb +any +auv +ath +atz +auv +auv +auv +auv +axP +ayu +ayu +ayu +ayu +ayu +ayu +amr +aGZ +cbl +aKA +aKA +aKA +aPz +eEV +azE +ari +auR +avS +avU +aUp +aap +beb +bgW +aoi +bjY +bjc +bjO +bnJ +box +bru +bsm +btN +bve +bwQ +byo +bzP +bBF +bEr +cLU +btG +ixD +bJt +fKS +qJj +jFq +htC +bQL +bSd +bTj +bMu +bPo +bUq +dQa +can +bYU +ccT +bYU +bYU +chv +ciK +cjX +ceZ +cmH +cnC +coJ +cqe +cqe +csr +ctt +cus +cvD +cwn +cxu +cxu +cxu +cAe +bUy +bYl +cDw +cEe +bZF +cbM +cGm +cqN +bBb +cGU +cHt +cJb +cIa +cJH +cmz +cKv +cnh +cLw +crN +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(114,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +pWa +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +aap +aaf +cLU +cLU +abD +acN +adk +adk +adk +aem +aeu +aej +afj +afM +agy +ahR +ahF +adh +aiN +ajn +aml +akv +alg +aos +amv +anl +anN +aoR +anl +aqn +ard +arP +atG +atk +atG +aux +avw +awA +avI +axR +ayw +ayw +aAQ +aCg +ayw +ayw +ayw +aHb +aLQ +aKF +aLM +aLM +aPB +eEV +azb +aYJ +aVP +aVP +aZa +bcD +bcl +bec +bgX +bfz +biy +biy +blD +bmK +boy +beb +bot +btm +bvg +bvi +bxr +bzR +bBI +bEr +cLU +btG +ixD +bJw +bLd +bJq +bPq +bMr +bQN +bSf +bTq +bNK +bPq +bUr +eut +cas +bYX +ccW +bYX +bYX +chz +bYX +chz +clj +cmK +cnI +coL +cqf +cri +cst +cst +cuu +cvE +cwo +hoh +cyx +hoh +sYh +cuo +bUC +bxN +clu +cEN +cch +cGn +cpE +bAP +cGX +cHu +cJh +cJu +cJM +cLF +cKB +cLi +cLx +cGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(115,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +abs +acL +adh +adh +adh +adh +aet +afO +afn +afK +agz +agY +ahD +adh +adh +ajo +acq +aku +ale +agW +ami +ajc +ami +ami +aqH +aqm +ang +arA +arA +arE +arE +arE +arE +arE +arE +azn +arE +arE +arE +arE +arE +arE +arE +arE +arE +aKE +aLM +aLM +aPu +aNR +azb +aAX +aVU +aVU +aYZ +aUp +aaf +beb +bfv +bgy +bgy +bgx +blA +blT +bGf +bnj +hDm +btL +bvN +bxo +bxr +bIQ +bBH +bAj +bAj +btG +bwS +bJv +bLc +btC +bNF +bNF +bNF +bNF +bWV +bNF +bNF +bNF +bYW +cap +cbG +ccV +ceA +cfR +chy +ced +cjY +cli +cmJ +cnM +bkA +bkA +bkA +bnd +bnd +cut +mKS +bnd +bnd +bkA +bkA +bkA +cBl +bUC +bxN +cnk +cEM +ccg +cGo +oAO +bAP +cGW +cHu +cHb +cHY +cJL +cGt +cmM +cmM +cmM +cGt +aaf +crP +aaI +aaf +crP +crP +aaf +crP +crP +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(116,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +aaf +aaG +aaG +aaG +aaG +aaG +abq +abO +acP +adn +adn +adn +adn +aez +aeZ +aft +afN +agL +agY +ahD +adh +adh +ajx +ajV +aif +ali +ahk +ams +anm +amC +aok +apI +aqp +arh +arp +asZ +aqf +atB +atB +atB +atB +atB +avp +aAi +aAi +aAi +aJC +aAi +aAi +aFQ +ayi +aHh +aNZ +aLQ +aKF +aPu +eEV +aLO +aAZ +aVR +aVR +aZd +aUp +aaf +beb +bzi +bhT +bge +bkM +biD +bjK +bHl +beb +bpc +buN +bwx +brj +bxr +bzS +bBK +bCZ +bED +bGx +bIb +bJx +qJj +btC +bNM +bPs +bQP +bPt +bTC +bSU +bSU +bSU +aWT +aWT +cbH +ccX +aWT +aWT +bSU +ciq +cka +clm +baI +cnO +coN +coR +crj +csv +boW +cuw +cvF +cwp +cfi +cyy +cyZ +bkA +cdJ +bYF +ckE +cDJ +cDJ +cDJ +cDJ +cDJ +cGt +cLp +cHu +cHb +cHY +cJP +cKa +cKE +cKE +cLz +cGt +aaf +aat +aaI +aaf +aat +crP +aaf +aat +crP +aaf +aat +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(117,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aap +cLU +cLU +aaG +aaz +aaF +aaR +abo +abC +ack +acO +adm +adm +adP +aen +aev +aeX +afp +afK +agH +agY +ahD +aen +adh +ajt +ajU +akw +alh +ahk +amq +amP +anT +aoh +anO +apO +aqv +aro +asZ +asU +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aCu +aDe +aHc +aCu +auk +auk +dKq +aPu +eEV +azb +beh +aVN +aVR +aXR +aUp +aUp +beb +beb +beb +beb +bje +beb +beb +beb +beb +aPb +aXc +aYc +bxr +bxr +bAj +bDb +bCY +bGE +btG +bHZ +bJl +bLe +btC +bNL +bPr +bQO +bPt +bTC +bSU +bUX +bXc +xrP +xrP +xrP +cdy +ceB +cgm +bSU +ciM +cjZ +clk +cmL +cnO +coM +coR +coR +csu +boJ +cuv +coR +coR +coR +coR +cyY +bkA +cBm +bUC +cDr +bVu +bWX +bYz +cbK +cor +cGt +bhR +chd +cHD +cJv +cJO +cJV +cKC +cKu +cLy +cGt +aaf +crP +aaI +aaf +crP +crP +aaf +crP +crP +aaf +aaI +aaI +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(118,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaD +aaL +aaU +abj +abF +abS +acR +adp +adp +adU +adp +aeB +adp +adp +agd +agO +adp +adp +adp +adp +ajJ +aml +akz +ala +ahk +amB +apI +anV +apI +aoY +apP +aqG +arr +asZ +asU +aoH +auz +avg +awF +axi +axS +cfS +azV +awF +aAb +aCY +aCu +aDv +aHg +aCu +cLU +auk +aNJ +aPC +aQP +azH +biz +aVV +aVR +aZe +bcb +aUp +bed +bed +bed +bed +bed +bed +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +bAj +bKC +bCW +bFc +btG +ixD +bJl +qJj +btC +bNO +bPv +bQR +bPt +bTC +bSU +bVf +bWJ +bYQ +bYQ +bWJ +cdQ +ceE +cfW +bSU +ciO +ckb +cln +cmL +cnO +coP +coR +coR +csz +bCF +cuv +cvH +coR +coR +cyz +czb +bkA +cBo +bYK +cDx +bWT +bWZ +cck +cFT +cGr +cLg +cHb +cHu +cHL +cJx +cIF +cKd +cJx +cIF +cLB +cGt +cLU +aap +aaI +cLU +cLU +aaf +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(119,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaC +aaL +aaC +aba +abE +abR +acQ +ado +adI +adS +aeA +aeH +aeo +afu +agG +agM +ahc +ahG +ail +aiO +ajI +aml +ajS +ala +ahk +amt +anp +anp +anp +anp +anp +aqy +arq +asZ +asV +aoH +auy +avx +awE +axh +awj +ayc +axh +aAR +axh +aCX +aCu +aDu +aHf +aCu +aaf +aMb +aQN +jHW +hDl +aUp +aUp +aUp +aXt +aYN +baQ +aZn +bed +bfC +bgz +biA +bjT +bed +bed +bed +bed +bed +bed +bed +bed +byN +byN +byN +byN +byN +btG +bIc +bJy +qJj +btC +bNN +bPu +bQQ +bPt +bTC +bSU +bVc +bXu +bYx +caj +cdY +cdF +ceD +cfV +bSU +ciN +ckb +cln +cjs +cnO +coO +coR +crl +csw +bCz +cux +cvG +cvG +cxx +coR +cmb +bkA +cBn +bUC +bZa +bVv +bWW +bZa +aVT +cHA +cGt +cfC +cHw +cun +cuq +cuJ +cuI +cuH +cJZ +cLA +cmc +cLU +cLU +aaI +cLU +cLU +crP +cLU +cLU +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(120,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaD +aaL +aaU +abj +abI +acc +acw +acw +adL +adZ +aeC +aaa +agg +agg +adL +act +aea +aec +aew +aff +afR +agv +akA +alj +ahk +amD +ann +anW +aoK +apd +apR +aqI +arQ +asZ +auK +aoH +auA +avB +awY +axj +cfS +axU +auA +aAh +aCk +auA +aCu +aFR +aHi +aCu +aJl +aJl +xhz +aPD +aQQ +azK +klA +mwu +aXv +aZg +baT +bcr +bdG +bfD +bhb +biB +bjU +bkI +bmO +bkL +bqz +bsp +btQ +bwC +bqw +byN +bzU +bBM +bDd +bEF +btG +ixD +bJp +bLg +bMv +bNR +bPA +bQW +bPt +bTC +bSU +bVD +bXu +bYR +cak +cdZ +cek +ceG +cfb +bSU +ciO +ckb +cln +clr +cnL +coR +coR +coR +coR +coR +cuv +coR +coR +coR +coR +czc +bkA +cBn +bUC +cDr +cDr +cDr +cDr +cDr +cDr +cGt +bhR +cox +cHM +bBo +cIH +cKf +cuG +cIH +ctB +cGt +cLU +cLU +aaq +cLU +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(121,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +cLU +cLU +cLU +aaG +aaC +aaL +aaC +aba +abH +abT +acr +acZ +adK +adY +adK +aeI +afv +agf +ago +agv +ahd +ahH +aae +aiP +ajK +agv +agK +aad +ako +ako +ako +ako +ako +ako +ako +ako +anG +asZ +asV +atE +atE +atE +axa +atE +atE +atE +atE +avW +atE +atE +aCu +aDe +axO +aCu +gsd +dvY +xhz +aPD +aQQ +azK +klA +mwu +blu +aZf +baS +bcf +bed +bfE +bhc +biC +bnf +blG +bnw +boC +boC +aMi +btR +bvQ +bwR +byN +bkO +bBO +bDc +bEE +btG +ixD +bJl +qJj +btC +bFF +bPz +bQV +bUA +bTD +bSU +bVC +bWJ +cbk +cbk +bWJ +cee +ceF +cfX +bSU +ciP +ckc +clp +cmN +cnK +coQ +cqg +crm +coQ +bXf +ctC +cuy +cvO +cxy +cyA +cgj +bkA +cBp +cCx +czA +cLU +cLU +aaf +aap +cLU +cGt +cGt +cGt +cGt +ctq +cLm +cLD +ctq +cLm +cty +ctK +cLU +cLU +aaI +ctg +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(122,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abc +cLU +cLU +cLU +aaG +aaD +aaL +aaU +abj +abF +ach +acU +adq +adq +aep +aep +afb +afw +adq +agE +acM +ahe +ahJ +aip +ahe +ajQ +agJ +akC +alk +alT +amF +ano +aof +api +apJ +apT +arg +arI +atI +auM +atD +auC +avD +awL +axm +axV +ayz +azW +aAT +azW +aCZ +aEr +aFT +aKG +aIS +aKK +aMa +aNT +aPF +aQM +aJi +klA +aUp +aUp +aUp +baW +aUp +aUp +bfF +beC +bgQ +bnr +aSD +bou +bHJ +bqA +bsp +btS +bxn +bwU +byN +bzQ +bBO +wTp +bEH +btG +bHM +bHO +bHP +btC +bNX +bPB +bQX +bPt +bTE +bSU +bVE +bWR +bYT +cal +ceb +cem +ceJ +cga +bSU +ciQ +cke +clr +cmP +cnR +blp +blp +blp +blp +blp +cwO +cwW +blp +blp +blp +bkA +bkA +cBq +cdW +czA +aaf +cLU +cLU +ccp +cHB +cHB +cHB +ccp +cGt +crU +csL +cKk +ctr +ctx +ctH +ctM +cub +aaf +apc +aaf +aaf +crP +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(123,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaE +aaM +aaV +aba +abJ +acd +acS +adq +adV +aeb +aeb +afa +afw +adq +agp +acC +ahe +ahI +aiR +aiQ +ajM +agv +akB +akT +alD +amE +akU +aoe +alw +aoZ +apS +aqM +anG +apy +aqi +atE +auB +bwA +awK +axl +axT +ayx +axT +aAS +avC +avC +aEq +aFS +aHk +aIP +aKI +aLY +aNS +aPD +aQQ +azK +cLU +aaf +aUp +baE +baV +bcI +aUp +blt +bhU +biE +bjW +blI +bmR +bpG +brv +bsp +bhF +bsp +bsp +byN +bzV +bBN +bDe +bEG +btG +ixD +bJl +qJj +btC +bNW +bPt +bPt +bPt +bUL +bSU +bSU +bSU +bYY +bSU +bSU +ccZ +bSU +bSU +bSU +ciq +ckd +clr +cmO +cnR +bYG +sBp +bSp +asT +ati +bTo +ssg +cjB +cpe +blp +bZH +czD +cBW +cCz +byA +byA +byA +clS +rQB +cKX +gwY +mNK +rQB +cGt +cqO +csI +cGt +cGt +csI +csI +cGt +ctP +aaf +apc +cLU +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(124,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaG +aaO +aba +aay +abL +acd +acW +adq +adV +aeb +aeD +afc +afx +agi +agF +agP +ahf +ahN +air +ajf +ajO +agv +akE +alm +alF +aeK +anq +amG +alt +apL +aqq +arl +anG +asp +aoH +aoj +aoj +aoj +aoj +axg +axT +ayP +axT +aAV +atE +atE +atE +aFV +atE +aJl +aJl +aJl +aNW +aPD +aQQ +azK +cLU +cLU +aUp +aCH +bcd +aDQ +aUp +bfH +beE +bgZ +bjW +biC +biC +biC +bqC +bsp +btp +bvh +bah +byN +bBQ +bBQ +bDg +cQX +aJi +bIe +bJC +bLj +aJl +bNY +bPt +bsH +bwI +bPx +bUH +caq +bQF +bZb +caq +bNp +cdb +ceM +chA +cii +cim +cjr +cjS +cmO +cnR +bXg +drB +ssg +ssg +cmx +cuA +ssg +ssg +atm +blp +cBz +cBz +cBW +cqw +cqG +crd +crq +byA +rQB +crM +hsk +cQw +rQB +aaf +csq +csR +ctp +csR +csR +ctp +csR +cud +cLU +apc +cLU +cLU +cbO +cLU +cLU +csM +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(125,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaG +aaN +aaW +abk +abK +acd +acV +adq +adV +aeb +aeb +afa +afw +adq +agE +acT +ahe +ahL +aiq +aiQ +ajO +agv +akD +akU +alE +ahA +alD +alD +aod +apf +aqo +arj +anG +asp +aoH +atH +atH +atH +aoj +axn +axW +ayH +axT +aAU +aBj +aDa +aEs +aFU +aHl +aIT +aKL +aJl +aFE +aPD +aQQ +azK +aaf +cLU +aJi +baG +baX +bdE +aJi +bfI +bhg +biG +bjX +blJ +biG +biG +bqD +bed +bed +bed +bed +byN +bzY +gpG +bDg +yeJ +aJi +bId +bJA +bLi +aJl +bPx +bLm +bPx +bsI +bPx +bUI +caq +bXe +bYZ +caq +bNa +cda +ceL +chg +chW +ciA +cmR +ciA +ciA +cgs +bVQ +crK +crJ +csy +csy +cuz +bUd +bXr +cxD +blp +ckv +cDg +cDR +cDY +cGA +cEr +cbJ +crH +cKO +cHE +ffg +lFM +rQB +aaf +csl +csQ +csQ +cIm +cIm +csQ +cIm +csQ +cLU +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(126,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaX +aaQ +aaZ +aaZ +abP +aab +acY +adt +adX +aex +aeG +afe +afS +agk +agI +adb +ahe +ahQ +ait +ahe +akg +agv +akG +alC +alG +ahA +alD +alD +aoX +alK +amz +arm +anG +asp +aoH +atL +auE +avE +aoj +axq +axY +ayR +axT +aAY +aBj +aDc +aEt +aFX +aHm +aIU +aIU +aJl +aNQ +aPD +aQQ +azK +aaf +cLU +azK +aZk +baZ +bcu +aJi +bfJ +bhh +bhV +bkN +blK +bmS +boF +bpN +aNU +bhy +bhP +bhy +btb +bAa +bBS +bDh +bEI +aJi +bIg +bJD +bcv +bOb +brb +brb +bQT +bOY +bTF +bUJ +caq +bXe +bZe +caq +caq +cdd +cdf +caq +caq +ciA +ckh +cll +cib +cgs +cpn +jko +fCE +fCE +fCE +ohn +ohn +cwx +nPR +blp +czO +czE +cBX +cCC +byF +byF +byF +byA +rQB +cLc +cLk +cLu +rQB +aaf +cIl +cGR +cGR +csX +csX +cGR +csX +cGR +cLU +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +ctg +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(127,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaH +aaP +aaY +abl +abM +acl +acX +adr +adW +aeq +aeE +afd +afz +agj +agZ +agv +ahh +ahO +ais +aiS +ajP +agv +aky +alw +alU +ajL +anP +aog +aoU +apN +aqE +aqw +anG +asp +aqA +atK +auD +auD +awM +axp +aIN +ayQ +axW +aAW +aBj +aDb +aEt +aBj +aBj +aBj +aIU +aJl +aNY +aPD +aQQ +azK +azK +azK +azK +aZj +baY +bct +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +bBR +aJi +aJi +aJi +bIf +bJA +bKW +aJl +bNU +bQp +bNU +bNU +bNU +bUK +caq +bXh +bZd +caq +bxl +cdc +cgS +cgb +chD +ciA +ckg +clv +cmS +cgs +cpn +cpn +bSK +cCf +cfq +cuB +cuB +cww +cww +blp +czN +cAN +cBY +cFC +byF +aaf +cLU +cKH +rQB +cpF +cLj +cLt +bBe +aaf +cIl +cGR +cGR +csX +csX +cGR +csX +cGR +cLU +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(128,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +aaG +aaG +aaG +aaG +abG +aco +aco +adJ +aco +aco +aco +aco +age +aco +agN +agv +agv +agv +agv +agv +agv +agv +anG +anG +anG +anG +anG +anG +anG +anG +asf +anG +anG +asq +aoH +atR +auG +avG +awP +axq +aya +ayR +azY +aBc +aBj +aDd +aEx +aBj +aHp +aIY +aIU +aJl +aOb +aPD +sWj +cYR +cYR +cYR +cYR +aSb +bbb +bcz +bAb +bhY +bgB +bgn +bjo +bGo +bAb +bnH +bpP +brK +btq +buW +bwW +byq +bAb +bAb +bDk +bwW +bwW +sDc +bJH +gAA +aKH +bNU +bPx +bPx +bQH +bNU +bUK +caq +caq +caq +caq +caq +caq +caq +caq +caq +ciA +ciA +clw +coy +cgs +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cBD +byA +byA +byA +byA +cLU +cLU +cLU +rQB +rQB +bBe +cKX +ccQ +aaf +cIl +cGR +cGR +csX +csX +cGR +csX +cGR +cLU +apc +cLU +cLU +crP +cLU +cLU +abc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(129,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +cLU +abb +abn +abN +acs +acs +acD +adB +adB +adB +adB +aeQ +afk +afJ +agw +agT +ahx +ahx +ahx +ahx +ahx +akp +agA +agV +adB +ans +aol +apg +apB +aps +are +arJ +asv +aoH +atM +auF +avF +awO +axr +axZ +ayT +ayn +aBj +aBj +aBj +aEw +aBj +aBj +aBj +aKM +aJl +aOa +aPG +aQS +aQS +aQS +aQS +aQS +aQS +bba +bcv +nYi +bgT +biM +bhW +bzt +bgT +pbo +bnG +aQS +aQS +bba +bcv +bcv +beT +aQS +aQS +bDj +aQS +aQS +aQS +bJG +gAA +aLV +bNU +bPx +bPx +bSk +bNU +bkx +bTF +bIK +bKi +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bQS +bRR +bSg +crv +bTF +bTF +bTF +ctv +cuC +bPx +bLm +bLm +bLm +cBA +bLm +cis +bQH +cea +cea +cea +cea +cea +clW +aaf +aaf +aaf +aIo +csA +csX +csX +csX +csX +csX +csX +csX +aaf +apc +aaf +aaf +crP +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(130,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +cLU +cLU +cLU +abb +abp +abp +abp +abb +adj +agm +agm +aee +aeR +afl +afA +agl +afs +agm +afX +afY +avA +abb +abb +alf +abb +anQ +anQ +and +aoC +anQ +aoH +alu +alu +alu +asF +aoH +atV +auH +avz +aoj +axu +axT +ayx +aAa +aBj +aCo +aCo +aEt +aBj +aHp +aIZ +aIU +aJl +aOc +aPH +aLY +aLY +aUj +aLY +aLY +aLY +aZc +aLY +aLY +biI +aLY +bia +bjn +biI +aLY +aLY +aLY +aLY +btr +bvj +aLY +beV +aLY +aLY +bDl +wVz +wVz +qHi +bvj +sfO +bMw +bNU +bCv +bLW +bQU +bNU +bNU +bWa +bDt +bPx +bQH +cbI +cbI +cbI +cbI +cbI +ciG +ciG +ciG +ciG +ciG +ciG +cir +bQH +cis +ctw +cuD +cfc +cvM +cvM +cvM +cCA +cAP +cBZ +cCR +cbs +bPx +bPx +bPx +cis +bzX +cLU +cGQ +cHy +cHP +cIn +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +apc +apc +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(131,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abb +abb +adO +abb +abb +abb +abb +abb +agq +abb +abb +abp +abp +abp +abb +ajk +akZ +aln +amx +amH +anu +aon +anQ +apa +apF +apF +apF +asE +aoH +atT +atT +atT +aoj +axt +avC +ayU +azX +aBd +aCl +aDf +aEy +aBj +aBj +aBj +aIU +aJl +aJl +aGJ +aJl +aJl +aPr +aBu +aJl +aBu +aJl +aBu +aJl +aJl +biO +bia +bkP +aJl +aJl +aGO +aJl +aGO +aJl +aJl +aJl +aJl +aJl +aJl +aJl +bEJ +bEJ +aJl +aJl +aJl +aJl +bDt +bDt +bDt +bDt +bDt +bDt +bVV +bDt +cbn +bDt +cbI +cde +ceO +cgf +cbI +ciR +chP +cly +cmU +cnQ +ciG +ciG +ciG +ciG +ciG +cwX +cvN +cvN +cvN +cvN +cvN +cvN +cvN +cbq +cDB +bPx +bLm +cKI +ckG +bzX +cLU +cHc +cHy +cHP +cIo +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(132,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aap +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +abb +adv +agm +aaS +abb +cLU +abb +afL +aqL +agm +abb +cLU +aaf +aaf +abb +ajE +afV +agm +anQ +amI +aoc +anR +anQ +aqC +aqt +aXP +asa +asE +aoH +atP +atP +atP +atP +aoE +ayb +ayW +aoE +aBj +aoO +aoO +aEB +aBj +aHr +aJa +aIU +aBj +aOq +aPI +aIe +aUf +aUD +aSS +aYy +aSS +aUU +aSS +bef +aZz +bgE +bic +bjq +aZz +blV +lbI +bpS +bnL +bts +aLS +bxs +bxt +bAe +bvv +bDt +mue +bGy +bDt +bJJ +cpy +bMx +bDt +bJT +bQY +bJU +bDt +aUM +bWc +bXl +bZj +cau +cbI +cdg +ceP +cgd +aZS +ciS +ciS +ciS +ciS +cnS +cpc +cqi +cro +csD +ciG +cuF +cvN +bXv +cxA +bYJ +cyD +caV +cvN +cCT +cDC +bSk +bNU +bzX +bzX +bNU +cLU +cGQ +cHy +cHP +cIn +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +csM +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(133,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cbO +crP +crP +crP +crP +crP +crP +crP +crP +aaf +aaf +abb +adu +agm +acG +abb +aaf +aeS +aau +agr +aau +aeS +cLU +cLU +aaf +abb +abp +abp +abp +anQ +aiJ +aiJ +aiJ +anQ +apG +aqu +arD +asa +asG +asm +atO +auI +avJ +awQ +axw +axw +ayV +azZ +atP +aBj +aBj +aBj +aGn +aBj +aBj +aBj +aBj +aOe +aPI +aHT +aTX +aUE +aSP +aSP +aSS +aSP +aSS +beg +aZz +dxK +eNu +iYA +aZz +btu +bnK +bpQ +bnK +blU +aLS +bwX +byr +bAc +bBU +bDm +bEK +bEK +aRt +bsc +bEN +bLR +bDt +bEL +bEL +bEL +bTs +bUt +bWb +bXo +bZi +cat +cbI +ccL +ceP +cgd +aZS +ciS +ckj +clz +cmV +cmV +coS +cqh +crn +csC +ctD +cuF +cvN +bXs +cxz +bhO +czd +ciL +cCa +cCa +cCa +cCa +cCa +clT +aaf +aph +cLU +cHc +cHy +cHP +cIo +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +abc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(134,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +abb +ads +agm +adi +abb +cLU +aeS +agS +acn +agS +aeS +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +alu +apF +apF +apF +apF +asH +avb +atP +auO +avK +awS +axz +ayf +ayY +aAd +aBg +atP +aDm +aEP +aGo +aHH +aJr +jKq +aMj +aOk +aPI +aHT +aTX +aUF +aWe +aXz +aSS +bbo +aSS +kSt +aZz +dxK +bid +iYA +aZz +blX +bnO +bpZ +brN +btu +aLS +bxa +byr +bAg +bBU +bDv +bEN +bGA +bDt +cpw +bEP +bMz +bDt +bPD +bRa +bRa +bTx +bUx +bWe +cpN +bZk +bZO +cbI +cdi +ceP +cgd +aZS +ciV +ckl +clB +cmX +cnU +ciG +cqk +crr +csF +ciG +cgC +cvN +cwv +cxG +cxz +czg +cAj +cCb +cjk +cCb +cEu +crs +aaf +cLU +aph +cLU +cGQ +cHy +cHP +cIn +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(135,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +abb +abb +als +abb +abb +aaf +aeS +agS +agh +agS +aeS +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +aap +cLU +alu +azR +aqP +arw +arN +asH +aiu +atP +auJ +auJ +crS +axy +aye +ayX +aAc +aBe +atP +aEh +aEQ +aGp +aGp +aGp +aKN +aMc +aOj +aPJ +aHT +aTX +aUF +aTk +aTk +aSS +aTk +aSS +bmQ +aZz +dxK +bid +bjs +aZz +blW +bnN +bpT +brM +btt +bwD +bwZ +byt +bAf +byt +bDn +bEM +bGz +bIh +bEL +bLp +bEL +bNZ +bEL +bQZ +bSm +bTu +bUw +bWd +bXp +bZk +caw +cbI +cdh +ceR +cgg +cbI +ciT +ckk +clA +cmW +cnT +ciG +cqj +crp +csE +ciG +cuE +cxF +cwu +cyD +cyF +cyD +cbe +cDF +cAV +cGM +cEt +crs +aaf +cLU +aph +cLU +cHc +cHy +cHP +cIo +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(136,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aeS +agS +afP +agS +aeS +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +aap +aaf +aaf +aoH +aoH +aoH +aRU +aoH +anh +akq +atP +auX +auX +crV +axA +ayg +ayY +aAc +aBi +atP +aEv +aER +aDV +aFG +aHt +jKq +aKU +aOl +aPI +aHT +aTX +aUF +aSS +aSS +aSS +aSS +aSS +aSS +beW +bgF +bih +bjg +aZz +blY +bnQ +bpg +brO +boR +bvk +bxb +byu +bAk +bBX +aPV +bEP +bGF +bIi +bJL +bLx +bMA +bNZ +bEL +bEL +bSn +bDt +bUz +bWg +bXw +bZm +caz +cbI +cdk +ceS +cbI +cbI +ciX +bck +clD +ciG +ciG +ciG +ciG +crt +ciG +ciG +bTQ +cvN +cwz +cxH +cxz +czi +cbg +cCb +cjm +cCb +clL +crs +aaf +aaf +aph +cLU +cGQ +cHP +cHP +cIn +cGR +cGR +cGR +cGR +cGR +cGR +cGR +aaf +cLU +apc +apc +crP +cLU +aap +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(137,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +cLU +cLU +aeS +cLU +cLU +cLU +aeS +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aaf +cLU +cLU +aoH +aqJ +ars +aoH +asJ +asl +atP +avm +auX +crV +axA +ayg +ayY +aAc +aBh +atP +jKq +aFZ +jKq +jKq +aJb +jKq +aKQ +aOl +aPI +aHT +aTX +aUF +aVS +aXB +aYF +aZr +aSS +bcG +aEe +dxK +big +bjt +aZz +bmY +aYe +buc +buc +buc +buc +bxC +bxC +bkc +bxC +bDy +bEO +bGD +bxC +bxC +bLt +bxC +cBI +bPE +bRb +bRb +bTJ +aUg +bWf +bXt +bZl +cay +bTJ +cdj +bTJ +cfY +cjp +ciW +ckm +clC +cmY +cmY +cjz +cql +cru +cfY +ciB +bTO +cvN +cwy +cyD +cyD +bZW +cAV +cCa +cCa +cCa +cCa +cCa +aaf +aaf +aph +aaf +cIO +cHy +cHy +cHy +cIn +cIO +cIn +cIO +cIn +cIO +cIn +aaf +cLU +cLU +apc +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(138,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aeS +cLU +cLU +cLU +aeS +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aap +aaf +adl +afC +apt +apv +apZ +aqK +aqB +atP +aBl +auX +crV +axA +ayg +azc +aAf +aBm +aDy +avO +aET +aIn +aJB +aGs +aDp +aMp +aOm +aPK +aHT +aTX +aUG +aVX +aXD +bfG +aZE +bcM +bcO +beX +bgG +bij +bjy +aZz +bnl +bnS +bnS +brJ +btO +bvm +bxe +byx +bAm +bBZ +bDp +bER +bGI +bIk +bDp +bLz +bDp +bOc +bDp +bDp +bSo +bTz +bUE +bWi +bXz +bZp +caC +cbQ +cdm +ceU +cgl +chH +ciZ +cko +clF +cna +cna +cna +cna +crw +cuf +clM +bTO +cvN +bXB +clZ +ciE +bZX +cbh +bvs +cqx +cqH +crk +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cto +aaf +aaf +apc +aaI +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(139,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aac +cLU +cLU +cLU +cLU +aaf +aap +cLU +aoH +ajN +apx +aoH +auP +atl +atP +auY +auY +crY +axy +ayg +aza +aAe +aDt +atP +aVh +awg +bbX +ayt +aGs +aDp +aLv +aMZ +aQe +aRu +aSQ +aUH +aVW +aZm +aZm +aZA +aSS +bcN +bfQ +dxK +bii +bjw +aZz +blZ +bnR +bqb +bqb +btw +bvl +bxd +byv +bAl +bBY +bDo +bEQ +bGG +bIj +bJM +bLy +bMy +bOa +bPF +bDo +bEQ +bTy +bUD +bWh +bXy +bZo +caB +cbN +cdl +ceT +cgh +chF +ciY +ckn +clE +cmZ +cnW +coU +cqm +csg +cfY +ciD +bTO +cvN +cvN +cvN +cvN +cvN +cvN +cvN +coI +cLU +crg +crC +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +cbO +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +apc +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(140,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aoH +aoH +aoH +aoH +alu +alu +atP +ava +avQ +awU +axz +ayh +aze +atP +aoE +atP +aDs +aDs +aDs +aHL +avO +aME +aMy +aOw +aQf +aRv +aSR +aUI +aWa +aXF +aZp +aZK +bbj +bei +aZz +dxK +bii +bjz +bhM +bmf +bnU +bnX +bsv +bIU +bvo +bxC +aMm +bAo +bxC +aMm +bxC +bGJ +bIm +aSc +aSk +bxC +bOd +bxC +aSk +aSk +aTI +bUN +bWk +bXC +bTJ +bTJ +bTJ +cdo +bTJ +cfY +cfY +cjb +bcx +clH +ciU +ciU +ciU +ciU +cry +ciU +ciU +bTO +ckS +ciF +cKU +crG +cKW +cKZ +crG +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +apc +abc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(141,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +apc +aph +aph +aph +aph +aph +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +aaf +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +atP +auZ +avP +avP +avP +avP +azd +aAg +aBn +aCr +atP +aap +aDs +aHK +aFi +aDp +aMl +aNd +aOM +aRw +aSS +aUF +aWm +aSS +aSS +aSS +aSS +btA +aZz +dxK +bii +iYA +blQ +bmb +bnU +bnX +brQ +bty +bvn +bxF +byy +bAn +bCa +bDq +bxF +bEz +bIl +aSa +bLA +bMC +bLC +bPG +bLC +bSq +aTH +bUF +bWj +bXA +bTJ +cax +cbR +cdn +cbR +chE +caE +cja +ckp +clG +cnb +cnY +ciU +cqn +crx +csG +ciU +bTR +bVx +cxv +chN +czf +cKV +cKY +cqr +cqA +aaf +aaf +aaf +aaf +aaf +crP +crP +crP +crP +crP +crP +crP +crP +crP +cto +cbO +crP +crP +crP +aaf +aaf +apc +crP +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(142,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aap +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +atP +avd +avR +avR +axG +axG +azf +atP +aBo +aCs +atP +aap +aDs +aHK +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aST +aUv +aWd +aTX +aTX +aSS +aSS +aTk +aYT +dxK +bik +bjC +bkX +bmn +bnW +bnX +brT +btI +bvp +aLX +byB +bAq +byz +bDr +bxF +bGL +bIo +bxF +bLC +bLC +bOf +bPI +bRd +bSi +bTJ +bSJ +bWk +bXE +bZq +caL +cbT +cdq +cbS +cgk +caE +cjd +ckr +clJ +cnd +cnZ +ciU +cqp +crA +csJ +ciU +bTO +crG +crG +crG +crG +crG +crG +crG +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +apc +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(143,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +atP +atP +aoE +aoE +aoE +axC +axC +aoE +atP +aqr +aqz +atP +aap +aDs +aHK +aKZ +arT +aMr +aOn +aPM +aKZ +aSf +aUo +aWh +aZm +aZm +bbd +aSS +bej +aZz +dxK +bii +bdV +bkV +bmm +bnV +bnX +brS +btB +bvp +bxf +byz +bAp +byz +byz +bES +byz +bIn +bJO +bLB +bMD +bOe +bPH +bRc +bSr +bOd +bUE +bWl +bXD +bZs +caK +cbS +cdp +ceV +cgi +caE +cjc +ckq +clI +cnc +cnc +coV +cqo +crz +csH +ctE +bTO +crG +cLU +cLU +cLU +cLU +cLU +cLU +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aap +cLU +cLU +aaf +cts +cLU +cLU +cLU +cLU +cLU +cLU +apc +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(144,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anU +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHO +aLd +aKS +aMt +aGD +aMs +aKZ +aUn +aUx +aWm +aSS +aSS +bbg +aSS +beZ +aZz +dxK +bii +rkN +blQ +bmb +bnX +bnX +brP +btM +bvr +bxF +byC +bAt +bzW +bDs +bxF +bGN +bIr +aSa +bLD +bMF +bOh +bPJ +bRe +bWM +aTI +bUR +bWk +bXG +bTJ +caM +bSB +cdr +bSB +cjo +caE +cjc +cjc +cjc +cjc +coc +cph +cqq +crB +csK +ciU +bTO +crG +aaf +aaf +aaf +aaf +aaf +aaf +cqD +aaf +aaf +crP +crP +crP +cto +cbO +crP +crP +cto +aaf +cbO +crP +crP +crP +crP +crP +aaf +aaf +aaf +crP +aaI +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(145,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aKZ +aBf +aMs +aOo +aPN +aKZ +azL +aBq +aVZ +aBq +aBq +aBq +bcB +aBq +aZz +bgH +bii +bjD +bhM +bmw +bnX +bnX +btx +btK +bvq +bwk +aLT +bAr +bwk +aLT +bwk +bGM +bIp +aSd +aSp +bwk +bOg +bwk +aSp +aSp +aTI +bUQ +bWm +bXF +bTJ +caE +caE +caE +caE +caE +caE +cje +cia +clK +cne +coa +ciU +ciU +ciU +ciU +ciU +bTT +crG +cLU +cLU +cLU +cLU +cLU +cLU +cqB +bpO +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(146,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +cLU +cLU +cLU +cHK +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aKZ +azJ +aMs +aOo +aPP +aKZ +aGI +aUw +aWf +aUt +aUt +aUt +bbM +baM +aZz +dxK +bii +rkN +aZz +bmz +boj +bqd +bqd +btP +bvu +bxh +byE +bAv +bCd +bDz +bEW +bGP +bIu +bDz +bDz +bMB +bOj +bPL +bDz +bEW +bTG +bUT +bWq +bXJ +bZt +caF +cbP +cdt +bzT +ceX +caI +ciU +ciU +ciU +ciU +ciU +ciU +clM +bTa +bTh +bTh +bSM +crG +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(147,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aJd +aJF +aMu +aPQ +aPO +aQW +aSg +aUq +aVY +aXA +aXA +aXA +bbr +bfb +aZz +bRJ +bii +rkN +aZz +bnm +bof +bqc +brV +bwY +bvt +bxg +byD +bAu +bCc +bDw +bET +bGO +bIt +bJS +bIt +bMG +bOi +bPK +bIt +bSu +bTA +bUS +bWp +bXI +aWU +caG +cei +cds +cds +cds +cfZ +caI +bOD +bRK +bSa +bSa +bSa +bSa +bSM +crG +crG +crG +crG +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +crP +crP +crP +cto +crP +crP +crP +apc +apc +apc +apc +apc +apc +apc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(148,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +csT +aaf +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aXf +aKv +aXS +aTC +aWL +bcC +bfg +aZz +bfa +bim +rkN +aZz +bni +biW +bqe +bni +bni +bBW +bwk +byJ +bAx +bwk +aLT +bEY +bGR +aLT +bwk +aSA +bME +bOl +bwk +aSA +aSA +bTJ +bUV +bWs +bXL +aWU +caH +cel +cdu +bWO +cgp +chJ +caI +bPj +cnX +chh +chh +cpi +cpi +crG +crG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(149,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aob +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arf +aap +atC +aHK +aGs +aKW +aKT +aOr +aQV +aQX +aKZ +aUs +aWg +aOp +aTB +bbe +bcA +bbi +aEi +bgJ +bil +rkN +aZz +bmA +bok +bok +brX +bnn +bwk +bwk +bqq +bAw +bwk +bIA +bEX +bFd +bGQ +bIC +aSq +bMJ +bOk +bPM +bPM +bSv +bMK +bUU +bWr +bXK +caI +caI +caI +caI +caI +caI +caI +caI +bPd +clN +clN +clN +clN +clN +cfQ +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cfQ +cLU +aaf +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(150,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aap +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +ctg +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +atC +aHP +aJy +aLh +axD +aOt +aPS +aPS +aSh +aUu +aXE +aUt +aUt +aUt +sFU +bcs +aEi +cvk +bil +rkN +aZz +bmC +bon +bqg +brZ +btU +bvx +bxm +byL +bAy +bwk +bDA +bEX +bGT +bGQ +bJV +aSq +bMM +bOn +bPP +bPN +bSx +bMK +bUP +bWt +bXN +bZv +caN +caN +caN +caN +cgr +ccP +cjh +bPl +clP +cfF +cjt +coX +cqu +cqv +clb +ceN +cuL +ctF +ccm +cxM +bpx +cuP +cmg +ctF +cCS +cCS +cnP +cEW +cqv +cLU +aaf +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(151,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aGs +aLf +aMF +aOs +aPR +aPR +aTa +aUt +aMw +aTs +aUy +aUt +arU +bfw +aZM +bRL +bil +bjv +aZz +bSy +bol +bqf +brY +btT +aLT +bkz +byK +bAx +bwk +bDa +bEZ +bGS +bIv +bOT +bDJ +bML +bOm +bPN +bPN +bSs +bMK +bUW +bWr +bXM +bZu +bZu +bZu +bZu +bZu +cgq +chK +cjg +bPk +clO +bVJ +cod +coW +cbm +bYD +ceo +ceC +cgZ +caA +btF +ccu +bLJ +ceC +cqd +ccl +cqE +cqP +chw +cEU +cqv +cLU +aaf +cLU +cLU +cLU +cLU +csM +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(152,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aGs +aLf +aAz +aOs +aPR +aRa +azM +aZl +aWi +aUJ +iUa +aUt +aUt +aUt +bbK +bff +bin +bjN +aZz +bmD +bUZ +bqi +bkF +bsG +bwk +bxq +byK +bAA +bwk +bDJ +bDJ +bGV +bDJ +bDJ +bDJ +bMR +bOq +bPR +bPR +bSw +bMK +caP +bWv +bXP +bZx +caO +cbV +cdv +cdv +ceY +ccP +cji +bQz +clQ +cfF +cof +coX +cqz +cqv +csN +ctI +cuM +ctF +ckJ +ccJ +bpx +cuP +czx +bpx +cCV +cDM +cEy +cEZ +bmh +bmh +cqv +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(153,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +atC +aHK +aGs +aLf +aMz +aOs +aPR +aQZ +azM +aUW +aWi +aUt +aUt +aUt +aUt +bcF +aZz +bOI +bid +bjH +aZz +bnn +bnn +bnn +bnn +bnn +bwk +bxp +byM +bAz +bwk +bDC +bFe +bGU +bID +bJW +bLo +bMQ +bBB +bPQ +bQG +bVa +bMK +bYC +bWu +bXO +bZy +bZy +bZy +bZy +bZy +bZy +bZy +bZy +bQy +clN +clN +clN +clN +clN +cfQ +cqv +ctF +ctF +ctF +ckB +cxN +ctF +bpx +ctF +ctF +cjM +cDL +cEx +cEX +cFH +cso +bmh +cLU +cLU +cLU +cLU +abc +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(154,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +aom +anS +anS +anS +anS +anS +anS +anS +anS +aom +anS +aaf +atC +aKO +aJz +aLf +aMC +aOs +aPR +aRc +azM +aWb +aWk +aUt +cdK +aXH +aZo +bdI +aZz +cyq +bid +rkN +aZz +bkv +boq +bqm +bsd +bov +bwk +bwT +byO +bAB +bCe +bDE +cMf +bGX +bIH +bJY +bLo +bMK +bMK +bMK +bMK +bMK +bMK +bVi +bWw +bXQ +bZB +caW +cbX +cdx +cid +cid +chM +bZy +bQD +aZT +cLU +cLU +cLU +cLU +cLU +cqv +cdI +cuO +cvK +cmd +cxQ +cyJ +czr +bpx +cBt +cCW +cDL +cEx +cuP +cEy +cGK +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(155,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aDs +aEu +aAK +aLf +aLq +aOu +aPR +aRb +aTe +azN +aWj +aBy +aBy +aBy +aTe +aTe +aZz +bjP +bib +bjP +aZz +bmJ +bop +bqj +bqj +btX +bwk +bxu +byK +bAx +bwk +bDB +bFf +bGW +bIG +bJX +bLo +bFD +bsr +bCp +bRg +bSz +bTH +aUL +bWv +bXP +bZy +cdw +cbW +cfa +cfk +cgx +chL +bZy +bQD +aZT +cLU +cLU +cLU +cLU +cLU +cqv +ctJ +cuN +cvJ +clq +cxP +cyI +czp +bpx +cBs +cuP +cDM +cEy +cuP +cEy +cGK +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(156,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aap +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aDs +aDs +aHX +aNc +aMD +aOx +aPT +aRd +aTe +cgF +aWo +aXI +aXI +bbk +beY +beu +aEi +dxK +bid +bjR +bkY +bmN +bos +bqo +bos +btZ +bvy +bxv +byR +bAC +bwk +bCp +aQY +bGY +aQY +aQY +bCp +bFD +bFD +bCp +bRi +bSC +bTK +bVb +bWy +bXR +bZA +bZA +bZA +bZA +bZA +bZy +bZy +bZy +bRC +aZT +cLU +cLU +cLU +aac +aaf +cqv +cgB +cuP +cvP +cmq +cnN +cyK +czs +bsN +cjj +cCY +czv +cuP +cuP +cEy +cGK +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(157,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aus +aDs +aHW +aLf +axE +aOv +axE +axE +aTe +cgA +aWn +aUz +aUz +bbh +bcE +bcH +bdK +bfk +bit +bjQ +aZz +bmM +bmP +bqn +bmP +btW +bwk +bzf +byQ +bAx +aLT +bjB +bFB +bHb +bKf +bFD +bLE +bFD +bFD +bCp +bRh +bHj +bTI +aUL +bWx +bXP +aXw +caX +caD +cdz +bZA +cgy +bYf +bQt +bQD +bYf +bYf +cLU +cLU +cLU +cLU +cqv +cuP +cuP +cvL +cmk +bpx +bpx +ctF +ctF +ctF +cCX +cDN +cEz +cFb +cFI +csp +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(158,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aus +aDs +aIa +aLf +aSu +aOz +aPW +aRe +azN +aUN +aWq +aXN +aXN +bbl +bcJ +bdN +aIO +bgK +biF +bjS +aZz +bmZ +bna +bna +bna +bua +bwk +bxw +byS +bAD +bCf +cMe +bDO +bHc +bFD +bFD +bLq +bFD +bNV +bCp +bRj +bRj +bRj +bRj +bWz +bXS +bZE +cbd +ccb +cdB +bZA +bYf +bYf +bpv +bRG +bRP +bYf +cLU +cLU +cLU +cLU +cqv +ctO +cuR +cvS +cnH +bpx +csO +czu +cmw +bmh +bmh +cqv +cqv +cqv +bmh +bmh +cqv +aaf +aaf +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(159,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aDs +aDs +aLe +aLf +aAz +aOy +aPU +aPU +aSi +aUK +aWp +aXJ +aXJ +aXJ +aXJ +bdM +aEi +bgJ +bix +rkN +aZz +bmP +bov +bov +bov +bua +aXK +aXK +baA +bBJ +aXK +bBT +bFC +bGZ +bmp +bJP +bLF +bFD +bFD +bCp +bRk +bSA +bTL +aWP +bWx +bXP +aXw +cbb +bSE +cdA +bZA +bZG +bXj +bXj +bXj +bQD +bYf +cLU +cLU +cLU +cLU +cqv +cuP +cuQ +chV +cnj +btn +ceC +cpH +cAp +bvP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(160,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +cLU +cLU +aaI +aaq +aaI +aaI +aaI +aam +aaI +aaI +aaI +aam +aaI +aam +aam +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDC +bdx +bdz +aLf +aMC +aOA +aPR +aRf +azN +aUO +aWr +aWr +aWr +aWr +aWr +aWr +aEi +bgJ +bix +bjv +aZz +bmP +bmP +bmP +bmP +bub +aXK +bay +bwu +bAF +aXK +bEV +bFD +bmd +bFD +bFD +bLs +bMT +bFD +bCp +bRm +bSG +bTN +bVd +bWB +bmj +bZA +bZA +bZA +bZA +bZA +caR +bXj +ccc +bXj +bQD +aZT +cLU +cLU +cqv +cqv +cqv +cqv +clt +cie +cnV +bpx +csP +czv +cAt +bmh +cLU +crc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(161,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaI +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aaf +aaf +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aDC +ayF +aIr +aLf +aMz +aOA +aPR +aRg +aTe +aUZ +aWC +aYh +aYh +bbC +aYh +aYh +aEi +bfa +bmB +bjZ +aZz +bna +bna +bqp +bna +bna +aXK +bxx +byT +bAE +aXK +bFD +bjG +bHa +bEV +bFD +bLG +bFD +bsr +bCp +bRl +bPw +bTM +aWP +bWA +bky +bmk +bmr +bpW +bTl +bXU +car +car +cca +bXj +bQD +aZT +cLU +cLU +bmh +crD +csO +bpx +cuP +chX +cnN +bsN +bsN +bsN +bsN +cgv +cqF +cqR +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(162,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaI +cLU +amJ +anB +aoo +cLU +amJ +anB +aoo +cLU +amJ +anB +aoo +aaf +aaI +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDC +ayB +aIb +aLf +aAz +aOC +aPY +aRj +aTe +aVa +aWD +aWD +aWD +aWD +aWD +aYh +aEi +bgJ +bKy +bkb +aZz +bYf +bYf +bYf +bYf +bYf +aXK +aXK +bAs +baA +aXK +bCp +bFh +bCp +bCp +bCp +bCp +bCp +bCp +bCp +bRn +bRn +bRn +bRn +bfh +bYf +bYf +bYf +bYf +bXj +bYk +cbf +cbf +ccG +bXj +bQD +aZT +cLU +cLU +bmh +cen +ceC +cgt +ceC +cjq +cnV +bpx +csO +czn +cEZ +bmh +cLU +cqD +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(163,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +aaf +cLU +cLU +aaI +aaf +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aDC +aDC +aGC +aIb +aLf +aMG +aRk +aPX +aRh +aTe +aVb +aWE +aVk +aZy +bcP +bcY +cdD +aEi +bgJ +aLD +bka +bmT +aVJ +aLN +aVJ +aVJ +aXq +aVJ +bxy +byU +bAG +bDi +bDF +bFg +bHd +bKh +bmX +bpr +bPO +bPO +bPO +bPO +bPO +bPO +bPO +bxV +bYg +bPO +bPO +bwV +bXj +bXj +bXj +bXj +bXj +bXj +bQD +aZT +cLU +cLU +bmh +cki +csP +bpx +cuP +cjn +coe +cpt +ceC +cpH +cAp +bvP +cLU +cqD +aaf +crP +crP +crP +crP +crP +crP +cto +cbO +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(164,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaI +aaf +amJ +anw +aoo +aaf +amJ +anw +aoo +aaf +amJ +anw +aoo +aaf +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +arK +bHi +aGL +aIR +aLf +aLf +aLf +aLf +aLf +aTe +aTe +aTe +aTe +aZz +aZz +aZz +aZz +aZz +bjj +bjk +bGd +aZz +bpj +aLU +bpj +bpj +bpj +bpj +brh +brh +brh +brh +bDG +bFk +brL +bYf +boe +bsE +bMO +bMO +bMO +bMO +bMO +bMO +bMO +bMO +bIw +bIw +bIw +bYd +caQ +caQ +chC +bOC +bOC +bOC +bRT +bYf +cLU +cLU +cqv +cqv +cqv +cqv +bpx +cjy +cuW +cqv +csP +czx +cmG +bmh +cLU +cqD +cLU +cLU +cLU +aap +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(165,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +aaf +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +arK +aEW +aug +bMP +aJR +aJR +aJR +aJR +aJR +aJR +aJR +aJR +aJR +bbf +bbm +bcK +bdQ +bdQ +bgL +biH +rkN +cte +bpj +boz +bqr +bsk +bsf +bvz +bvA +bxB +bAH +brh +bDU +bFj +bIx +bIx +bIx +bIx +bMO +bOr +bPS +bOs +bMO +bTP +bVe +bZJ +bXV +bZI +bXY +bYc +bYc +bYc +cci +bYf +bYf +cjO +bYf +bYf +aaf +aaf +aaf +aaf +cqv +ctQ +chw +cjv +cuP +cqv +cqv +cqv +cqv +cfQ +aaf +cCJ +aap +cLU +cLU +cLU +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(166,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaI +aaI +cLU +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +cLU +cLU +cLU +cLU +aoJ +aCv +aCv +aCv +aCv +aDC +aFd +aDC +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aZz +bbn +bcQ +bdV +bdV +bdV +bKy +rkN +cte +aFz +bpl +odK +bui +byX +bvz +bzc +boI +bAJ +bpp +aXx +aXx +bIx +khd +bKa +pFS +bMO +bOt +bPU +bOs +bMO +aTZ +bVh +bWE +bXX +bZK +caJ +cce +cdH +ccd +cgG +bYf +cjl +chB +ckt +aZT +cLU +cLU +cLU +aaf +cqv +ctR +cuP +cvZ +cwQ +cqv +cLU +aaf +cLU +cLU +cLU +cqD +aap +cLU +cLU +cLU +aaf +aaf +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(167,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +cLU +aaf +cLU +cLU +aaf +aca +aaf +aaf +aaf +aca +aaf +cLU +aaf +aca +aaf +cLU +cLU +cLU +aCv +aoJ +aoJ +azD +aBp +aEX +aCv +aEC +aFc +aDC +aJI +aLj +aMP +hLX +hLX +aRK +aTh +aVc +aTh +aYj +aZz +bbn +bcL +bdR +bfl +bgI +biJ +bkd +bkZ +aFz +bpl +bqt +buj +byY +bvz +bzA +boI +bAI +bpp +brH +bFl +bIx +bDT +bKc +bDT +bMO +bOs +bPT +bRo +bRo +aTY +bVg +bWD +bXW +bZM +bXZ +ccs +cdG +cgR +bMU +bYf +cjf +cjR +cgV +aZT +cLU +cLU +cLU +cLU +cfQ +cqv +cqv +cqv +cqv +cqv +cLU +aaf +cLU +cLU +cLU +cqD +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(168,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +akH +alp +alp +alp +ace +alp +alp +alp +ace +alp +alp +alp +ace +alp +alp +alp +afD +afW +agR +aig +ajD +auq +auS +avX +aSG +aFw +aJD +aJJ +aJW +aMg +qlX +hLX +aRK +hLX +aVc +hLX +aYj +aZz +bcw +bdu +aZz +aZz +bdJ +hPt +rkN +blh +aFz +bpl +bqZ +bse +byZ +bvz +bxz +boI +bAK +bpp +bDK +bDK +bIx +bFn +bKc +bLw +bMO +bHG +bOs +bOs +bOs +bTU +bVk +bWG +bYe +cfd +bXY +ccA +cdM +bYc +bNe +bYf +bYf +bYf +bYf +bYf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cqD +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(169,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +aaf +aaf +aca +aaf +cLU +aaf +aca +aaf +cLU +aaf +aca +aaf +cLU +cLU +cLU +aoJ +aCv +aCv +aAk +aDB +aDY +aGy +aED +aDC +aDC +aLi +aLl +aMR +aNj +aRL +aRL +aRL +aRL +aRL +aRL +aZB +bbH +bdd +bey +aZz +bgV +hPt +rkN +blg +aFb +boE +bqs +bxD +bue +bvz +bxA +boI +oaC +bpp +bDK +bFm +bIx +bDZ +bKb +bKe +bMO +bOs +bOs +bOs +bOs +bTS +bVj +bWF +bYa +bZL +bXY +bYc +bYc +bYc +bNb +aZT +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +cqD +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(170,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaq +aaI +cLU +aaf +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +aaf +cLU +cLU +cLU +aCv +aCv +aCv +aCv +aCv +aFd +aDC +aGM +aJk +aEF +aOL +aOf +aRM +aRM +aRM +aRM +aRM +aRM +aZC +bbI +bde +bbs +aZz +bgH +hPt +bkf +blO +brh +aLr +bqv +aLr +bpp +bpp +wJf +boI +iok +bpp +bDM +bDN +bDP +bFG +bIy +bBk +bMO +bOx +bOs +bOs +bOs +aTZ +bVm +bWH +bYi +bXb +bIw +caU +ccD +bsE +bNb +aZT +cLU +aac +cLU +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +bXx +cLU +cLU +cLU +cqD +cLU +aaf +cLU +cLU +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(171,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +aaf +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +aDC +aFd +aDC +aDw +aJM +aKb +aMq +hLX +aDi +aVd +hLX +aVd +hLX +aWl +aZD +aRL +bdd +beA +aZz +dxK +hPt +bjD +blO +bne +boI +bqu +boI +buf +bvB +boI +boI +bAN +bpp +aRE +bDD +bIx +bvT +bHV +bCC +bMO +bOw +bOs +bOs +bMO +aTZ +bVl +bWG +bYh +bZN +bIw +caS +ccD +ccD +bNb +aZT +cLU +cLU +cLU +cdO +cog +coY +coY +com +cog +coY +coY +com +cog +coY +coY +cdO +cLU +cLU +cLU +cqD +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(172,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +amJ +anE +aoo +aaf +amJ +anE +aoo +aaf +amJ +anE +aoo +cLU +aaf +cLU +cLU +cLU +aaf +aaf +cLU +cLU +arK +aFd +aDC +aIf +aJN +aLo +aMU +hLX +aQw +aVd +hLX +aVd +hLX +hLX +aYt +aRL +bdd +aYt +aZz +bha +hPt +rkN +blO +bng +boK +boH +byV +buh +bza +bza +jYD +bAN +bpp +bmx +bFq +bIx +bzj +bIO +bNn +bMO +bOy +bPV +bRp +bMO +bTP +bVR +bWG +bYm +bMO +bIw +bJh +bMt +bMt +bNi +bYf +cLU +cLU +cLU +cdO +coj +coZ +coY +com +coj +coY +coY +com +coj +coZ +coY +cdO +aaf +aaf +aaf +cfr +cqF +crE +cqF +crI +aaf +aaf +aaf +aaf +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(173,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +aaf +cLU +cLU +cLU +cLU +aaf +aaf +cLU +arK +aFd +aDC +aIg +aIg +aIg +aIg +aIg +aIg +aZH +aTi +aWy +hLX +hLX +qlX +aRL +bdd +bfy +aZz +dxK +hPt +bjv +blO +bnh +boI +bsg +bsh +bug +bDX +mGD +bze +bAM +bpp +aSB +bFp +bIx +bIx +bIx +bIx +bMO +bMO +bMO +bMO +bMO +bMO +bMO +bWK +bYj +bMO +bVI +bIY +cdL +cdL +cdL +cdL +cdL +cdL +cdL +cdO +coh +coY +coY +com +coh +coY +coY +com +coh +coY +coY +cdO +cLU +cLU +cLU +aaf +cLU +aaf +cLU +coI +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(174,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +amJ +anF +aoo +cLU +amJ +anF +aoo +cLU +amJ +anF +aoo +aaf +aaI +aaf +cLU +cLU +cLU +cLU +aaf +aaf +aDC +aFe +axd +aGF +aJg +aKY +aMI +aOE +aGF +aIg +aIg +aIg +aQT +aYl +aZF +aRL +bdd +bbE +aZz +bBV +hPt +rkN +blO +brh +boM +bqE +bsl +bsj +bsj +bsl +bze +cfN +bpp +bod +bFt +bIJ +cnu +bKk +bLL +bMX +bOA +bCw +bCw +bSI +bTY +bIJ +cnv +bYo +bww +bVX +bJz +cdL +cgc +cig +che +crh +cky +clY +com +bgd +cpd +bmq +com +bnk +ctS +bpX +com +brs +cxV +brW +cdO +cdO +cdO +cdO +cdO +cdO +bXx +aaf +cCJ +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(175,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aaf +aaf +cLU +cLU +aaI +cLU +cLU +cLU +cLU +aDC +aDC +aDC +aDC +aFf +aJR +ayK +aJf +aKX +aMH +aOD +aGF +aRl +aSj +aIg +aWG +hLX +aZG +aRL +bdd +beD +aZz +dxK +hPt +rkN +brU +aGc +boL +bqx +bsj +bsj +bsj +bsj +bze +cfL +aLr +bmU +bFs +bFH +bIP +bKj +bLK +bMW +bOz +bLK +bLK +bSH +bTX +cyE +bWL +bYn +bww +caT +bJj +aYL +cff +cgI +chO +bLl +ckx +clV +com +btk +cpa +btD +crO +btJ +cpa +bup +cwa +btJ +cpa +buz +cpI +bvb +bvW +cDf +cDS +cEA +cdO +cLU +cqD +aaf +aaf +aaf +aah +aah +aal +aat +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(176,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aaI +aaI +aam +aaI +aaI +aaI +aam +aaI +aaI +aaq +aaI +aaI +cLU +cLU +cLU +cLU +arK +aMf +aQL +aDC +aFg +aGF +aGF +aGF +aGF +aMK +aGF +aGF +cnn +aTW +aXj +hLX +aWz +aZH +aRL +bdf +bcm +aZz +bhi +hPt +rkN +brU +aGe +boO +bqI +bul +bul +bvD +bvD +rYD +bAQ +bJK +bpY +bWN +bIJ +byG +bKo +bKo +bMY +bOB +bPX +bRr +asj +byG +bIJ +bWP +bAU +bww +bms +bJB +aYL +cfh +cgI +chO +bLv +ckA +cfn +com +con +cpg +cqC +cpg +cqC +ctU +cvb +cpg +cvb +cpg +cyN +czP +cAz +cBB +coY +coY +coY +cdO +cLU +coI +cLU +aag +aap +aap +aap +aak +aax +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(177,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +arK +bHi +bHi +aUB +aFg +aGF +aHv +aJh +aLa +aMJ +aOF +aGF +aRm +aSm +aIg +aWH +aVx +aZI +aRL +bdg +hLX +aZz +bhe +hPt +rkN +brU +aGc +boN +bnx +bsn +bud +bvC +bxE +bAO +aLr +aLr +bDY +bFu +bIJ +bIJ +bKo +bKo +bMY +bOB +bPX +bRr +asj +bIJ +bIJ +bTt +bYp +bww +chB +bIY +cdL +cge +cgK +chQ +bLr +ckz +cif +com +col +crQ +crQ +crQ +crQ +czP +crQ +crQ +cwR +crQ +crQ +cpK +bvc +bvX +coY +coY +coY +cdO +cLU +coI +cLU +aah +aap +aap +aak +aap +aat +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(178,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +arK +ats +aSe +aDC +aFg +aGF +aHx +aJm +aLc +aMN +aOH +aGF +aGG +aGG +aGG +aGG +aGG +aGG +aGG +bcS +aGG +aZz +bfK +hPt +rkN +blk +blO +blO +brh +brh +brh +bwv +bpp +bpp +aLr +cFR +cFU +cFZ +bKv +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bVp +bCj +bYr +bww +bww +bJF +cdO +cdO +aZb +chS +bNq +ceW +com +com +com +com +cbp +crQ +ctT +ctX +cve +cvq +cwd +crQ +crQ +czP +cAB +com +com +com +com +cdO +cLU +coI +aaf +aah +aah +aaj +ckw +aap +aat +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(179,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aDC +aDC +aDC +aDC +aFg +aGF +aHw +aJj +aLb +aML +aOG +aGF +aRo +aHA +aUP +aWs +aHA +aZs +bbp +bcR +aHA +aEe +bhj +hPt +rkN +brU +brU +blO +bqJ +bss +bww +bCl +aLZ +bAR +bAR +bAR +bEa +bFw +bAR +bIT +bKp +bLQ +bMZ +bOE +btv +bLQ +bSD +bIT +bAR +bAR +bYq +aWW +bww +bJE +cdR +bXx +bce +chR +bLO +com +cit +cdE +coo +com +cbo +crQ +csm +ctW +cvc +cwb +cwc +cxW +crQ +cpL +bvb +bvZ +cDf +cDS +cEA +cdO +cLU +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(180,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +aDC +aFg +aGF +aHz +aJn +aJn +aMO +aOI +aPZ +aRq +aSo +aUQ +aWt +aXV +aZu +aXV +bcU +bee +aEe +dxK +djd +fpV +tAY +tAY +boP +bqO +bsu +buq +bvE +aMe +bzh +bAT +bCi +bEc +bFz +bHk +bHk +bKr +bLS +bNd +bOF +bLS +bRt +bLS +bLS +bLS +bLS +bYt +aXa +cbi +bme +bBf +bFQ +bIa +bKw +bPa +aIu +bVK +bVK +bVP +aYB +aBb +bVK +bVK +cgz +bVK +cjA +cok +cxX +cxX +cpO +cAz +cDd +coY +coY +coY +cdO +aaf +cCJ +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(181,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aaf +aaf +arK +aFg +aGF +aHy +aHy +aLg +aGF +aGF +aGF +aII +aSn +aVi +aTo +aXT +aZt +aXT +bcT +bea +bfq +bhl +biK +rkN +brU +brU +aGX +bqN +bst +bun +bwy +aMd +bCh +bAS +bCh +bCh +bCh +bCh +bCh +bKq +bLk +bNc +bCh +bCh +bRs +bCh +bOp +bCh +bCh +bYs +aWX +bww +bkj +cdU +cgJ +bce +bJN +bNS +com +cop +ctV +cvd +com +aRO +crQ +crQ +crQ +crQ +crQ +coi +crQ +crQ +czI +byd +bwa +coY +coY +coY +cdO +cLU +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(182,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +aaf +arK +aFg +aGG +aHC +aJo +aJo +aGG +aHA +aHA +aRr +aTo +aVi +aTo +aTo +aTo +aTo +bdl +aTo +aEe +dxK +bik +rkN +blk +blO +blO +bnI +bnI +bnI +bnI +bHm +xOe +bAW +bCk +aQB +aQB +aQB +aQB +cwt +bGa +bMV +aSJ +bTk +bWC +aSJ +bMV +aVq +aVq +aVq +bww +bww +roQ +cdO +cdO +aZP +bKB +bSY +cfg +bdX +bdX +com +com +aTD +cks +csS +ctZ +crQ +crQ +coi +cpA +crQ +cpS +cAD +com +com +com +com +cdO +cLU +coI +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(183,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +aap +aaf +arK +awi +aGG +aHA +aHA +aHA +aMQ +aHA +aHA +aRr +aSs +aVi +aTo +aXW +aZv +aXW +bcV +bee +bfx +bhm +biL +wqh +bln +aGg +boQ +bqP +bsw +bur +bvK +cFM +bCj +uFU +tDI +aQB +bmF +bBg +bBg +bCt +bEv +bMV +bOG +bWY +bRu +aUA +bMV +aaf +aaf +aaf +bMV +bYb +bnb +cdS +bYy +cgQ +bKz +cjF +ckC +cme +cdS +aat +cdO +cdO +cdO +cdO +cdO +csj +crQ +coq +com +crQ +cpP +bvb +bwm +cDf +cDS +cEA +crF +cLU +coI +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(184,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +crP +aaf +cLU +cLU +aaf +arK +awo +aIz +aHE +aJq +aJq +aJq +aJq +aJq +aRz +aSt +aUS +aSt +aXY +aZt +aXT +bcX +bek +aEe +dxK +bii +rkN +brU +aGi +boS +bqR +bsC +but +bvK +bxL +bCj +uFU +bCh +aQB +bOR +bNh +bDW +bzG +bzI +bMV +clU +bWY +bRx +aTG +bMV +aZw +aZw +aZw +bMV +caY +bpV +aZq +cfm +cgT +bKU +bUs +ckF +cmf +bHr +aaf +cLU +cLU +cLU +cLU +cdO +cgD +crQ +cou +com +cyP +cpS +cAz +cGs +coY +coY +coY +crF +cLU +coI +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(185,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +arK +arK +aGG +aHD +aJp +aHA +aHA +aHA +aHA +aRy +aHA +aUR +aHA +aXX +aHA +poU +bcW +aHA +aEe +dxK +bji +rkN +bum +aGg +aHs +bqQ +bsz +bus +bvK +bnq +bCj +uFU +eZK +bGa +bIL +bNf +bCs +cwZ +cxC +bMV +bOH +bQb +bRw +bSL +bXi +bQq +bWQ +bYu +bMV +bXT +bpV +aZq +cfm +cgT +bKD +cjF +ckD +cmf +bHr +aaf +cLU +cLU +cLU +cLU +cdO +csk +cwe +cos +com +crQ +cpT +bCq +bwq +coY +coY +coY +crF +cLU +coI +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(186,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +aaf +aaf +aGG +aHG +aGG +aLm +aLm +aGG +aQb +aGG +aSv +aGG +aGG +aXZ +dMz +aGG +bda +aGG +aZz +dxK +vme +rkN +blO +bnI +boU +bqS +bsF +bAX +bvL +bxO +bHq +bHo +bCm +bGa +bLV +aRn +bOK +cwZ +cyh +bsO +bzF +bQd +bRz +bSO +bXn +bVt +bWQ +bYw +bMV +bXT +bpV +aZq +cfm +cgT +bKD +cjF +ckD +cmf +bHr +aaf +cLU +cLU +cLU +cLU +cdO +chT +chT +cpb +cdO +ccn +cpV +cdO +cdO +cdO +cdO +cdO +bXx +aaf +cCJ +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(187,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +aaf +aaf +aGG +aDE +aGG +aLk +aMT +aGG +aOJ +aRA +aSl +aGG +bbq +aBR +aCI +lAZ +bcZ +yjb +aRZ +bdW +biN +bkg +bmc +bxM +boT +bzg +bsD +bBl +bvK +tos +aMo +bHn +bNc +bGa +csB +cyi +cyi +cwZ +ctz +bzb +bOJ +bQc +bRy +bSN +bMV +bVs +bWS +bYv +bMV +bXT +bpV +cdS +bJZ +cgW +bKV +bVr +ckF +ciz +cdS +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +coI +cLU +cLU +coI +cLU +cLU +cLU +cLU +cLU +aaf +cLU +coI +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(188,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +aaf +aaf +aGG +aIx +aGG +aum +aum +aGG +aGG +aGG +aGG +aGG +aWv +aYb +bel +bel +bel +bel +bfA +ihN +dMn +bfc +bmc +bpH +boV +bqT +aLx +buu +bvM +bxP +bww +aPL +aTd +bGa +bVo +bMb +bCg +cxs +cyi +bre +bzE +bQg +bRB +bSQ +bMV +bFX +bHu +bFX +bMV +bwM +brE +cdS +cfp +cgY +cjD +cni +ckI +cmi +cdS +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cfr +cpB +cpB +cpZ +cpB +cpB +cpB +cpB +cpB +crE +cpB +crL +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(189,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aRZ +aSw +aUT +aWx +aYa +jva +jva +jva +jva +kxa +xVT +biP +bkh +bmc +bnI +bnI +bnI +bnI +bnI +bnI +bww +bww +bHp +bCL +bGa +bGa +bGa +bGa +bGa +bGa +bMV +bOQ +bQf +bRA +bSP +bMV +bFJ +bHe +bPY +bMV +caZ +bpV +cdS +cfo +cgX +cjC +cls +ckH +cmh +cdS +cLU +cLU +aaf +crP +crP +crP +crP +crP +crP +crP +crP +crP +cbO +crP +crP +crP +crP +crP +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(190,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +nky +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +aaf +cLU +aaf +cLU +cLU +cLU +cLU +aaf +aaf +aRZ +aSx +aUV +aWx +aZL +aZL +aZL +aZL +aZL +vfH +ihN +biR +bkp +bns +bpE +bFP +bmv +bsM +buw +bzD +bAV +bBd +bHI +bie +bFy +bGb +bGb +boc +bGb +bqy +bMV +bOU +bQh +bRE +bSS +bMV +bFX +bWU +bFX +bMV +cba +bpV +cdS +cgw +cha +clo +cls +ckD +cml +cdS +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(191,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aRZ +aRZ +aKu +aWx +mYp +mYp +mYp +mYp +mYp +vfH +ihN +biQ +aSY +aRZ +boD +bpL +bqV +bhw +bpF +bpF +boa +bnM +bHy +bhZ +bFr +bGc +bGc +bIS +bKl +bLN +bMV +bOu +bQh +bwL +bxZ +bFa +bGg +bIN +bQo +bMV +cbc +bpV +aZq +bHf +bJI +chY +bVF +ckD +cmf +bHr +cLU +cLU +cLU +crP +aaf +cua +cvi +cwf +aaf +cua +cvi +cwf +aaf +cua +cvi +cwf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(192,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ayk +aUh +aUV +aWx +aYf +aZN +aZN +aZN +aZN +yce +bhp +aZN +aTg +aRZ +bpJ +bpJ +brr +boo +bpF +bpF +bwF +bnM +bIq +bjf +bEn +bEn +bEn +bEn +bEn +bqB +bMV +bOW +bQh +bRH +bSV +bUc +bVy +bOv +bYA +bMV +bIX +bLZ +aZq +cft +cha +chY +cjF +ckD +cmf +bHr +cLU +cLU +cLU +cbO +cLU +cua +cvj +cwf +cLU +cua +cvj +cwf +cLU +cua +cvj +cwf +aaf +crP +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(193,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ayk +aSy +aQo +cBH +aFu +aSF +bbu +aUY +ben +sGZ +aHe +aWA +bhn +aRZ +bnM +bnM +bjl +bjl +drR +drR +bjl +bjl +aQp +aTf +bCJ +bbx +bbx +bEn +bsb +bqB +bMV +bOV +bQi +bRF +bST +bSS +bSS +bRD +bSS +bMV +ccM +ceK +aZq +cfs +chb +cic +cjG +ckL +cmf +bHr +cLU +cLU +cLU +aaf +aaf +cua +cvj +cwf +aaf +cua +cvj +cwf +aaf +cua +cvj +cwf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(194,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ayk +azP +azP +azP +aGk +aDD +bbv +bdh +beo +aDD +aHu +azP +azP +aRZ +cLU +cLU +bjl +bph +bph +bph +bph +bjl +bIB +bju +bCJ +bbx +bbx +bEn +bte +bqB +bMV +bMV +bMV +aXy +bMV +bMV +bMV +bMV +bMV +bMV +cav +cfe +cdS +cfu +chc +cih +cjH +ckN +cmn +cdS +cLU +cLU +aac +aaf +cLU +cua +cvj +cwf +aaf +cua +cvj +cwf +cLU +cua +cvj +cwf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(195,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +azP +bbw +azP +ayk +ayk +ayk +azP +bjd +azP +aaf +cLU +cLU +cLU +bjl +bph +bph +bph +bph +bjl +sVy +bIE +bCJ +bCJ +bCJ +bCJ +bqX +bsU +bGb +bPZ +bQk +bRI +bSW +bXq +bVH +bVH +bVH +cbL +ccS +ccw +cdS +cdS +cdS +cdS +cdS +cdS +cdS +cdS +aaf +aaf +aaf +aaf +cLU +cua +cvj +cwf +aaf +cua +cvj +cwf +aaf +cua +cvj +cwf +cLU +cLU +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(196,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +azP +bhq +azP +aaf +aaf +aaf +azP +bkl +azP +cLU +cLU +cLU +cLU +bjl +bph +bph +bph +bph +bjl +bIz +bjA +bHs +bko +bAi +bCJ +bEn +aRi +aRi +bEn +bQl +bRM +bSX +bUn +bUG +bZU +bJQ +bZT +bLI +ccy +bXT +cfw +cgN +chZ +cmp +ckP +bem +beO +beO +cLU +cLU +aaf +cLU +aaf +anC +cLU +cLU +aaf +anC +cLU +cLU +aaf +anC +cLU +cLU +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(197,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQU +aLW +azP +aaf +cLU +aaf +azP +aNM +aQU +aaf +cLU +cLU +aac +bjl +bph +bph +bph +bph +bjl +bBj +bCB +bEd +bkt +bHw +bCJ +aaf +cLU +cLU +bOO +bOO +aXL +bOO +bOO +bOO +bOO +bYB +bZS +bUn +bFU +cdX +bNT +bPy +bPW +bQu +ckO +cob +cno +cqs +cpm +cqJ +cqJ +cqJ +cqJ +amK +cqJ +cqJ +cqJ +amK +cqJ +cqJ +cqJ +amK +cqJ +cqJ +cqJ +cFL +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(198,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +apc +aaf +crP +aaf +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +blM +bjl +bjl +bjl +bjl +bjl +aPa +aPa +aMM +bkt +bHw +aPa +aaf +cLU +cLU +bOO +bQn +bRO +bHY +bUe +bVA +bOO +bUn +bUn +bUn +ccv +cDE +bOo +cgP +chG +cjx +cfl +beO +beO +beO +cLU +cLU +aaf +cLU +aaf +anC +cLU +cLU +aaf +anC +aaf +cLU +aaf +anC +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(199,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aMM +bkt +bHw +aPa +aaf +cLU +cLU +bOO +bQm +bRN +bSZ +bFS +bVz +bOO +aaf +cLU +bUn +bUn +cfI +bUn +cgN +cgN +cgN +cgN +beO +aaf +aaf +aaf +aaf +aaf +aaf +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +cua +cvl +cwf +cLU +cLU +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(200,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bvO +pAd +pAd +pAd +bvO +aMM +bkt +bHw +aPa +aaf +cLU +cLU +bOO +bLU +bWn +bTc +aTb +bVG +bOO +aaf +aaf +aaf +bUn +bVZ +bUn +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +cua +cvl +cwf +cLU +cua +cvl +cwf +cLU +cua +cvl +cwf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(201,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +aac +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +mVl +mLL +vVU +tRc +aMM +bFW +bHw +aPa +aaf +aaf +aaf +bOO +aTb +aTb +aTb +bOO +baO +bOO +aaf +cLU +aaf +bUn +ceg +cnt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(202,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +tCN +gSL +gyJ +tRc +aMM +bkt +bHw +aPa +aaf +cLU +aaf +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cLU +aaf +bUn +cfU +bUn +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cua +cvl +cwf +cLU +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(203,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bxQ +cSp +tQY +tRc +aPa +bkr +bHv +aPa +aaf +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aaf +cLU +bEo +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaq +cLU +cua +cvo +cwf +aaf +cua +cvo +cwf +aaf +cua +cvo +cwf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(204,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bZP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +buR +hZw +hZw +fyf +buR +aPa +bkU +btH +bCJ +cLU +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +aaf +ceq +aaf +aaf +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +crP +cLU +cLU +aaf +aaf +cLU +aaf +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cbO +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(205,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +brg +eWD +eTV +tRc +aPa +xHt +bHx +bCJ +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(206,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bzN +ejv +oDi +bDQ +aRC +bFY +bHz +aPa +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(207,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +aac +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bwJ +pqS +klX +tRc +aMM +aPa +bCJ +bCJ +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(208,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bzO +byn +bCr +buR +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +aac +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(209,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +tRc +buR +sxY +bCD +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(210,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +apc +aaf +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(211,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +aaf +ceq +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(212,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(213,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +apc +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(214,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +apc +apc +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +aaf +ceq +aaf +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(215,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +apc +apc +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(216,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +aaf +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(217,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cLU +aaf +aaf +aaf +aaf +aaf +ceq +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(218,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +cLU +ceq +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(219,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +crP +cto +cbO +crP +crP +crP +crP +crP +aaf +aaf +aaf +aaf +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +cLU +ceq +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(220,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +aaf +bKE +bKE +bNj +bOP +bKs +bKt +bKt +bKt +bby +bKt +bKt +bKt +bKs +bOP +ces +bKE +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(221,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +bKE +bLT +bLT +bKt +bKt +bKt +bMe +bUf +bLT +bQr +bMe +bKt +bKt +bKt +ceq +cfy +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(222,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKE +bMd +bLT +bNj +bQs +bRQ +bMe +bUf +bLT +bQr +bMe +bRQ +bUj +bNj +ceq +cfA +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(223,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKE +bLT +bNk +bKt +bQr +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bUf +bKt +cet +bNk +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(224,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKs +bKs +bKt +bKt +bQr +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bUf +bKt +bKt +bKs +bKs +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(225,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKs +bKt +bKt +bMe +bMe +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bMe +bMe +bKt +bKt +bKs +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(226,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bMe +bMe +bMe +bKt +bKt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(227,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKt +bMe +bMe +bMe +bMe +bMe +bTd +bUi +bLT +bXa +bTd +bMe +bMe +bMe +bMe +bMe +bKt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(228,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKt +bKF +bNm +bMe +bMe +bMe +bMe +bMe +buA +bMe +bMe +bMe +bMe +bMe +ceu +bKF +bKt +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(229,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bUj +bKF +bQs +bMe +bMe +bMe +bMe +bMe +bMe +bKt +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(230,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKu +bKt +bMe +bMe +bMe +bMe +bMe +bUf +bMe +bQr +bMe +bMe +bMe +bMe +bMe +bKt +bKu +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(231,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(232,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(233,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(234,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bVL +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(235,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bKF +bMe +bKt +bKt +aaf +aaf +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(236,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bKu +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(237,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(238,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(239,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(240,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(241,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(242,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(243,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(244,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(245,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(246,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(247,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(248,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(249,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(250,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(251,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(252,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(253,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(254,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(255,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} diff --git a/maps/exodus/backup/z1_admin.dmm b/maps/exodus/backup/z1_admin.dmm new file mode 100644 index 00000000000..f80c7c0360d --- /dev/null +++ b/maps/exodus/backup/z1_admin.dmm @@ -0,0 +1,52687 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/unsimulated/wall, +/area/space) +"aab" = ( +/turf/space, +/area/space) +"aac" = ( +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/wall, +/area/space) +"aad" = ( +/turf/space, +/area/shuttle/syndicate_elite/mothership) +"aae" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aao" = ( +/turf/space, +/area/shuttle/escape_pod1/centcom) +"aap" = ( +/turf/space, +/area/shuttle/escape_pod2/centcom) +"aaq" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"aar" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"aas" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"aat" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"aau" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aav" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aaw" = ( +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aax" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aay" = ( +/obj/structure/table/rack/holorack, +/obj/effect/landmark/costume/chameleon, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"aaz" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"aaA" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"aaB" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"aaC" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"aaD" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_plating) +"aaE" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"aaF" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaG" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaH" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaI" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaJ" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaK" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"aaQ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"aaR" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aaS" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aaT" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"aaU" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"aaV" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"aaW" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn" + }, +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"aaX" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaY" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aaZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"abg" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"abh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"abi" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"abj" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abk" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abl" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abm" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Jury Box" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"abn" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"abx" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_r" + }, +/turf/space, +/area/centcom/evac) +"aby" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion" + }, +/turf/space, +/area/centcom/evac) +"abz" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/space, +/area/centcom/evac) +"abB" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"abC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"abD" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"abE" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Court Reporter's Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abF" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abG" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abH" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abI" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Witness Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abJ" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"abK" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"abL" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/corners{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"ace" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_1_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"acf" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_2_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"ach" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"aci" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"acj" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"ack" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"acl" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"acm" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acn" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aco" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acp" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acq" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acH" = ( +/obj/structure/closet/emcloset, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"acI" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_1_recovery"; + pixel_x = 25; + pixel_y = 30; + req_access = list(list("ACCESS_EXTERNAL","ACCESS_TORCH_CREW")); + tag_door = "escape_pod_1_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"acJ" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"acK" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"acL" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 0 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"acM" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_2_recovery"; + pixel_x = -25; + pixel_y = 30; + req_access = list(list("ACCESS_EXTERNAL","ACCESS_TORCH_CREW")); + tag_door = "escape_pod_2_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"acR" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"acS" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"acT" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"acU" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"acV" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acW" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acX" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acY" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"acZ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"ada" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"adk" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"adl" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"adm" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"adn" = ( +/obj/item/stool, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ado" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 30; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"adp" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"adq" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"adr" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"ads" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"adt" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"adK" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/plating, +/area/centcom/evac) +"adN" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"adO" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"adP" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"adQ" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"adW" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"adX" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"adY" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"adZ" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aea" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aeb" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aec" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aed" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aee" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"ael" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aem" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aen" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aeo" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aep" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"aeq" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aer" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aes" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aet" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aeu" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aev" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aew" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aeB" = ( +/turf/space, +/area/shuttle/escape_pod5/centcom) +"aeC" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aeD" = ( +/turf/space, +/area/shuttle/escape_pod3/centcom) +"aeE" = ( +/obj/structure/window/reinforced/crescent, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"aeF" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/wall, +/area/space) +"aeI" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_5_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"aeJ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_5_recovery"; + pixel_x = -25; + pixel_y = 25; + req_access = list(list("ACCESS_EXTERNAL","ACCESS_TORCH_CREW")); + tag_door = "escape_pod_5_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"aeK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aeL" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_3_recovery"; + pixel_x = 25; + pixel_y = -25; + req_access = list(list("ACCESS_EXTERNAL","ACCESS_TORCH_CREW")); + tag_door = "escape_pod_3_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"aeM" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_3_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"aeN" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"aeO" = ( +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"aeP" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"aeQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"aeR" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"aeS" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aeT" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aeU" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aeV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aeW" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aeX" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aeY" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_beach) +"aeZ" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"afa" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afb" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afc" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton{ + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afd" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afe" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"aff" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"afg" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"afi" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"afj" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn Random" + }, +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"afk" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"afl" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"afm" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"afn" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"afo" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"afp" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"afq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"afr" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 9; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"afs" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 1; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"aft" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 5; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"afu" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afv" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afw" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"afx" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"afT" = ( +/obj/machinery/computer/arcade, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"afU" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"afV" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"afW" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"afX" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 8; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"afY" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_beach) +"afZ" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"aga" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/holodeck/source_beach) +"agb" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 4; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"agc" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"agd" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Red Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"age" = ( +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"agp" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"agq" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"agr" = ( +/obj/structure/window/shuttle{ + icon_state = "window2" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/centcom/evac) +"ags" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/centcom/evac) +"agt" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"agu" = ( +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"agv" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_meetinghall) +"agw" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 10; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"agx" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "beach" + }, +/area/holodeck/source_beach) +"agy" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"agz" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"agA" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"agB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"agC" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"agD" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"agK" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/centcom/evac) +"agL" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"agM" = ( +/obj/structure/window/shuttle{ + icon_state = "window1" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/centcom/evac) +"agN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"agO" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"agP" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"agQ" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"agR" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"agS" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"agT" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"agU" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"agV" = ( +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"agW" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"agX" = ( +/obj/item/beach_ball/holoball, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"agY" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"agZ" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"aha" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ahb" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ahc" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ahd" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ahe" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 4; + icon_state = "corner_white" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ahf" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ahn" = ( +/obj/machinery/sleeper, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"aho" = ( +/obj/machinery/door/airlock/hatch{ + name = "Infirmary" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"ahp" = ( +/obj/structure/table/reinforced, +/obj/random/clipboard, +/obj/item/stamp, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"ahq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"ahr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"ahs" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"aht" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"ahu" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"ahv" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"ahw" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ahx" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ahy" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ahz" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 8; + icon_state = "beachcorner" + }, +/area/holodeck/source_beach) +"ahA" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 4; + icon_state = "beachcorner" + }, +/area/holodeck/source_beach) +"ahB" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ahC" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ahD" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ahE" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8; + icon_state = "corner_white" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ahF" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ahU" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"ahV" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"ahX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ahY" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ahZ" = ( +/obj/item/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"aia" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/holodeck/source_beach) +"aib" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert_dug" + }, +/area/holodeck/source_beach) +"aic" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"aid" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"aie" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"aif" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"aig" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"air" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Security Desk" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"ais" = ( +/obj/structure/table/standard, +/obj/item/storage/box/handcuffs, +/obj/item/device/flash, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"ait" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"aiu" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet{ + dir = 8 + }, +/area/holodeck/source_meetinghall) +"aiv" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"aiw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aix" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"aiy" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert0" + }, +/area/holodeck/source_beach) +"aiz" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"aiA" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"aiB" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"aiC" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Green Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"aiJ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"aiK" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"aiL" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"aiM" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"aiN" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/holodeck/source_beach) +"aiO" = ( +/obj/item/inflatable_duck, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"aiY" = ( +/obj/machinery/computer/crew{ + dir = 4; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aiZ" = ( +/obj/structure/bed/chair{ + dir = 4; + name = "Defense" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"aja" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ajb" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ajc" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ajd" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"aje" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ajf" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton{ + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ajg" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"ajm" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ajn" = ( +/obj/item/device/radio/off, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ajo" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"ajA" = ( +/obj/item/storage/lockbox, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ajB" = ( +/obj/item/stamp/captain, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ajC" = ( +/obj/machinery/computer/shuttle{ + dir = 1; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ajD" = ( +/obj/random/clipboard, +/obj/item/pen, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ajE" = ( +/obj/item/paper_bin, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ala" = ( +/turf/simulated/mineral, +/area/space) +"alg" = ( +/turf/unsimulated/beach/sand{ + density = 1; + opacity = 1 + }, +/area/beach) +"alr" = ( +/turf/unsimulated/beach/sand, +/area/beach) +"als" = ( +/obj/structure/closet, +/turf/unsimulated/beach/sand, +/area/beach) +"alJ" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand, +/area/beach) +"alK" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"alX" = ( +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"amK" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand, +/area/beach) +"anb" = ( +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"ano" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/turf/unsimulated/beach/sand, +/area/beach) +"anp" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5 + }, +/turf/unsimulated/beach/sand, +/area/beach) +"anP" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/snacks/chips, +/turf/unsimulated/beach/sand, +/area/beach) +"anQ" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/turf/unsimulated/beach/sand, +/area/beach) +"anR" = ( +/obj/item/beach_ball, +/turf/unsimulated/beach/sand, +/area/beach) +"aph" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"api" = ( +/mob/living/simple_animal/crab/Coffee, +/turf/unsimulated/beach/sand, +/area/beach) +"apA" = ( +/obj/item/clothing/head/collectable/paper, +/turf/unsimulated/beach/sand, +/area/beach) +"apO" = ( +/turf/unsimulated/beach/coastline{ + density = 1; + opacity = 1 + }, +/area/beach) +"apP" = ( +/turf/unsimulated/beach/coastline, +/area/beach) +"apZ" = ( +/turf/unsimulated/beach/water{ + density = 1; + opacity = 1 + }, +/area/beach) +"aqa" = ( +/turf/unsimulated/beach/water, +/area/beach) +"asP" = ( +/turf/unsimulated/wall, +/area/centcom) +"asQ" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom) +"asR" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom) +"asS" = ( +/obj/effect/paint/hull, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"asV" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"asW" = ( +/obj/item/stool, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"asX" = ( +/obj/structure/table/rack, +/obj/item/rig/light/internalaffairs/equipped, +/obj/item/rig/light/internalaffairs/equipped, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"asY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"asZ" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atb" = ( +/turf/unsimulated/wall, +/area/prison/solitary) +"atc" = ( +/obj/machinery/vending/cola{ + name = "Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atd" = ( +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ate" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/sinpockets, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/deck/cards, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atg" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ath" = ( +/turf/unsimulated/wall, +/area/centcom/living) +"atj" = ( +/obj/structure/bed, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"atk" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"atl" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"atm" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"atn" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ato" = ( +/obj/item/flame/lighter/zippo/random, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atp" = ( +/obj/item/storage/fancy/cigarettes, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atr" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ats" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"att" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"atu" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"atv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"atw" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"atx" = ( +/turf/unsimulated/wall, +/area/centcom/suppy) +"atA" = ( +/obj/effect/landmark{ + name = "prisonwarp" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"atB" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"atC" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + icon_state = "heater" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"atD" = ( +/obj/machinery/vending/snack{ + name = "Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atE" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atG" = ( +/obj/structure/bookcase, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atH" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"atI" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"atJ" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"atK" = ( +/obj/machinery/atm{ + pixel_y = 24 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"atL" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"atM" = ( +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"atN" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"atO" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"atP" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"atQ" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"atR" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/suppy) +"atS" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/suppy) +"atU" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"atV" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atX" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 25; + pixel_y = 0; + tag_door = "admin_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom) +"atY" = ( +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"atZ" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"aua" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"aub" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"aue" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"aug" = ( +/obj/machinery/vending/cigarette{ + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auh" = ( +/obj/machinery/light, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"aui" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auk" = ( +/obj/machinery/microwave, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"aul" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"aum" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"aun" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "admin_shuttle_bay_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"auo" = ( +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/supply/dock) +"auq" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1; + icon_state = "heater" + }, +/obj/structure/window/reinforced, +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/supply/dock) +"aus" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/wall, +/area/prison/solitary) +"aut" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auu" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auw" = ( +/obj/machinery/button/blast_door{ + id_tag = "supply_shuttle"; + name = "Supply Drone Shutter Control"; + pixel_x = 0; + pixel_y = 0 + }, +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/supply/dock) +"auy" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/supply/dock) +"auz" = ( +/turf/simulated/floor/plating, +/area/supply/dock) +"auD" = ( +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"auE" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"auF" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"auG" = ( +/obj/machinery/computer/shuttle_control{ + dir = 8; + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Administration" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auI" = ( +/obj/structure/synthesized_instrument/synthesizer/piano{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"auJ" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"auK" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = list("ACCESS_BAR") + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"auL" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"auM" = ( +/obj/machinery/vending/boozeomat, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"auN" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"auO" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"auP" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"auQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "supply_shuttle"; + name = "Supply Drone Shutters" + }, +/turf/simulated/floor/plating, +/area/supply/dock) +"auR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"auT" = ( +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"auU" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"auV" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"auW" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"auX" = ( +/obj/effect/shuttle_landmark/supply/centcom, +/turf/simulated/floor/plating, +/area/supply/dock) +"auY" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"auZ" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"ava" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avc" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avd" = ( +/obj/machinery/robotic_fabricator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ave" = ( +/obj/machinery/fabricator/hacked, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avf" = ( +/obj/structure/dispenser, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avg" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avh" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avi" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"avj" = ( +/obj/machinery/optable, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avk" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avl" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"avm" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"avn" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/surgery, +/obj/item/reagent_containers/glass/bottle/stoxin, +/obj/item/reagent_containers/syringe, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avs" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"avt" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avu" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avv" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avx" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"avy" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"avz" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/material/kitchen/rollingpin, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avB" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/showcase{ + desc = "A self-contained autopilot that controls supply drones."; + icon_state = "comm_server"; + name = "Supply Drone Virtual Intelligence" + }, +/turf/simulated/floor/plating, +/area/supply/dock) +"avD" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"avE" = ( +/obj/machinery/vending/medical, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"avF" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avG" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avH" = ( +/obj/machinery/chemical_dispenser/full, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"avI" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle"; + pixel_x = -25; + pixel_y = 0; + req_access = list("ACCESS_CENT_GENERAL"); + tag_door = "admin_shuttle_hatch" + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"avJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"avK" = ( +/obj/item/device/multitool, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avL" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"avM" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avN" = ( +/obj/structure/table/standard, +/obj/item/card/id/centcom, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"avO" = ( +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avP" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avQ" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"avS" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "admin_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/effect/shuttle_landmark/admin/start, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"avT" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"avU" = ( +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/living) +"avV" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"avW" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space) +"avY" = ( +/turf/unsimulated/wall, +/area/centcom/specops) +"avZ" = ( +/turf/unsimulated/wall, +/area/centcom/creed) +"awa" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"awb" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"awc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"awg" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/gun/projectile/automatic/l6_saw, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awh" = ( +/obj/structure/table/rack, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awi" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/gun/projectile/automatic/sec_smg, +/obj/item/gun/projectile/automatic/sec_smg, +/obj/item/gun/projectile/automatic/sec_smg, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awj" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/ionrifle, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awk" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awl" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/gun/projectile/automatic/bullpup_rifle, +/obj/item/gun/projectile/automatic/bullpup_rifle, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awm" = ( +/obj/structure/table/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/emps, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/gun/launcher/grenade, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awn" = ( +/obj/item/aiModule/nanotrasen, +/obj/item/aiModule/reset, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/protectStation, +/obj/item/aiModule/quarantine, +/obj/item/aiModule/paladin, +/obj/item/aiModule/robocop, +/obj/item/aiModule/safeguard, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awo" = ( +/obj/machinery/door/blast/regular{ + id_tag = "ert_synth_equipment"; + name = "Synthetics Modification Equipment" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"awp" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"awq" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"awr" = ( +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aws" = ( +/obj/machinery/shieldgen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awt" = ( +/obj/machinery/shieldwallgen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awv" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"aww" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/creed) +"awx" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/control) +"awy" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awz" = ( +/obj/machinery/telecomms/bus/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awA" = ( +/obj/machinery/telecomms/processor/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awB" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awC" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awD" = ( +/obj/machinery/computer/teleporter{ + dir = 2; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awE" = ( +/obj/machinery/tele_projector, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awF" = ( +/obj/machinery/tele_pad, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awG" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awL" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "ASSAULT"; + name = "Assault Weapon Storage"; + p_open = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"awM" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/circuitboard/borgupload, +/obj/item/stock_parts/circuitboard/aiupload{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"awN" = ( +/obj/structure/table/rack, +/obj/item/storage/secure/briefcase, +/obj/item/storage/fancy/cigarettes, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/belt/utility, +/obj/item/storage/backpack/satchel, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"awO" = ( +/obj/structure/table/woodentable{ + dir = 10 + }, +/obj/machinery/button/blast_door{ + id_tag = "CREED"; + name = "Spec Ops Ready Room"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/button/blast_door{ + icon_state = "doorctrl0"; + id_tag = "ASSAULT"; + name = "Mech Storage"; + pixel_y = -4 + }, +/obj/machinery/button/blast_door{ + id_tag = "ert_synth_equipment"; + name = "Synth Equipment"; + pixel_x = 5; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"awP" = ( +/obj/machinery/porta_turret/crescent{ + check_synth = 1; + enabled = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"awQ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Creed's Office"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/creed) +"awR" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"awS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Maintenance Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"awT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"awU" = ( +/turf/unsimulated/wall, +/area/centcom/test) +"awW" = ( +/obj/machinery/camera/network/ert{ + c_tag = "Assault Armor North" + }, +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"awX" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"awY" = ( +/turf/unsimulated/floor{ + dir = 9; + icon_state = "vault" + }, +/area/centcom/specops) +"awZ" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "ASSAULT"; + name = "Assault Armor Storage"; + p_open = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"axa" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axb" = ( +/obj/structure/closet/secure_closet/hos, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"axc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"axd" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/device/radio/intercom/specops{ + dir = 2 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"axe" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/living) +"axf" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/living) +"axi" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"axj" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axk" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axl" = ( +/obj/machinery/vending/assist, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axm" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axn" = ( +/obj/machinery/pipedispenser, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axo" = ( +/obj/machinery/pipedispenser/disposal, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axp" = ( +/obj/machinery/power/emitter, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axq" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/card/id/centcom, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"axr" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"axs" = ( +/obj/machinery/button/blast_door{ + id_tag = "NTrasen"; + name = "Hull Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"axt" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axu" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axv" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axw" = ( +/obj/machinery/telecomms/hub/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axx" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axy" = ( +/obj/machinery/r_n_d/server/centcom, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axA" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"axB" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"axC" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"axF" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/circuitboard/smes, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"axH" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"axI" = ( +/obj/machinery/door/airlock/centcom{ + name = "Maintenance Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/control) +"axK" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Teleporter Bay"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"axN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"axQ" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"axR" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axS" = ( +/obj/structure/table/reinforced, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/taperoll/police, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axT" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axU" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axV" = ( +/obj/structure/table/rack, +/obj/item/rig/military/equipped, +/obj/item/rig/military/equipped, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axW" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axX" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axY" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"axZ" = ( +/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/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aya" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayb" = ( +/obj/machinery/porta_turret/crescent, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayc" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"ayd" = ( +/obj/structure/table/reinforced, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aye" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayf" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayg" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/wrench, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayh" = ( +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ayi" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ayj" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ayk" = ( +/obj/machinery/door/airlock/centcom{ + name = "Research Facility"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/test) +"ayo" = ( +/obj/machinery/vending/engineering, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayp" = ( +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/rcd, +/obj/item/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd, +/obj/item/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayq" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayr" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ays" = ( +/obj/structure/closet/secure_closet/medical3{ + pixel_x = -5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"ayt" = ( +/obj/structure/closet/secure_closet/medical1{ + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"ayu" = ( +/obj/structure/closet/secure_closet/medical2{ + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"ayv" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"ayN" = ( +/obj/item/pickaxe/diamonddrill, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayO" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashbangs, +/obj/item/handcuffs, +/obj/item/device/flash, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/glasses/tacgoggles, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayP" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/storage/box/trackimp, +/obj/item/storage/box/cdeathalarm_kit, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayQ" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/pinpointer/advpinpointer, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayR" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/ert, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayS" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/gun/nuclear, +/obj/prefab/hand_teleporter, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayT" = ( +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/taperoll/engineering, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ayU" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"ayV" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ayW" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ayX" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/obj/structure/decoy{ + name = "A.L.I.C.E." + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ayY" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azo" = ( +/obj/structure/table/rack, +/obj/item/rig/military/equipped, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"azp" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"azq" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"azr" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"azs" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"azt" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/specops) +"azu" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azx" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azy" = ( +/obj/machinery/door/window{ + dir = 2; + name = "AI Core Door" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azz" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azB" = ( +/obj/machinery/computer/crew{ + dir = 8; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azC" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azQ" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/grenade_launcher, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/mounted/plasmacutter, +/obj/item/rig_module/mounted/plasmacutter, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"azR" = ( +/obj/machinery/door/airlock/centcom{ + name = "Armory Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"azS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Engineering Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"azT" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "CREED"; + name = "Ready Room"; + p_open = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"azU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"azV" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + opacity = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "CREED"; + name = "Ready Room"; + p_open = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"azW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azX" = ( +/obj/machinery/door/airlock/centcom{ + name = "Bridge"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azY" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"azZ" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAl" = ( +/obj/machinery/camera/network/ert{ + c_tag = "Assault Armor South"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"aAm" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations Command"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aAn" = ( +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aAo" = ( +/obj/structure/sign/warning/engineering_access{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aAp" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aAq" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aAr" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aAs" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/specops) +"aAt" = ( +/obj/effect/floor_decal/corner/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAu" = ( +/obj/machinery/computer/robotics{ + dir = 4; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAv" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAx" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAE" = ( +/obj/structure/sign/redcross{ + pixel_y = -32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aAF" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aAG" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aAH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/handcuffs, +/obj/item/storage/pill_bottle/dice, +/obj/item/deck/cards, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aAI" = ( +/obj/structure/bed/chair/office/light, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aAJ" = ( +/obj/machinery/computer/arcade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aAK" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aAL" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAM" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAN" = ( +/obj/machinery/button/blast_door{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome Access"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "crescent_vip_shuttle"; + name = "VIP Shuttle Access"; + pixel_x = 6; + pixel_y = -34 + }, +/obj/machinery/button/blast_door{ + id_tag = "CREED"; + name = "Spec Ops Ready Room"; + pixel_x = -6; + pixel_y = -34 + }, +/obj/machinery/turretid{ + pixel_x = 28; + pixel_y = -28; + req_access = list("ACCESS_CENT_GENERAL") + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAO" = ( +/obj/structure/table/reinforced, +/obj/item/card/id/captains_spare, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aAZ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Medical Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aBa" = ( +/obj/machinery/fabricator/hacked, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donut, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBc" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBd" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBe" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBf" = ( +/obj/machinery/status_display, +/turf/unsimulated/wall, +/area/centcom/specops) +"aBg" = ( +/obj/structure/table/rack, +/obj/item/device/lightreplacer, +/obj/item/device/lightreplacer, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBh" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/captain, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aBj" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aBs" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/storage/box/syringes, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/autoinjectors, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/defibrillator/compact/combat/loaded, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBv" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBw" = ( +/obj/machinery/chem_master, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBx" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBy" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBz" = ( +/obj/structure/table/reinforced, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBA" = ( +/obj/effect/landmark{ + name = "Commando" + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBB" = ( +/obj/structure/closet{ + name = "emergency response team wardrobe" + }, +/obj/item/clothing/under/syndicate/combat, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aBC" = ( +/obj/structure/hygiene/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBI" = ( +/obj/structure/closet/crate, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aBK" = ( +/obj/structure/table/rack, +/obj/item/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/glasses/science, +/obj/item/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBL" = ( +/obj/item/mop, +/obj/structure/mopbucket, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket{ + amount_per_transfer_from_this = 50 + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aBN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aBO" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aBZ" = ( +/obj/structure/table/reinforced, +/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, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCa" = ( +/obj/machinery/door/airlock/centcom{ + name = "Holding Cell"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aCb" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/control) +"aCj" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular, +/obj/item/device/flash, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/flash, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCk" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/defibrillator/loaded, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCl" = ( +/obj/structure/iv_drip, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCm" = ( +/obj/structure/closet/crate/medical, +/obj/item/circular_saw, +/obj/item/surgicaldrill, +/obj/item/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/bonesetter, +/obj/item/scalpel, +/obj/item/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/hemostat{ + pixel_y = 4 + }, +/obj/item/cautery{ + pixel_y = 4 + }, +/obj/item/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/nanopaste, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCn" = ( +/obj/structure/table/rack, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCo" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/merc, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCp" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCq" = ( +/obj/structure/table/rack, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aCr" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aCs" = ( +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aCt" = ( +/obj/item/stool/padded, +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aCu" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aCv" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aCx" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCy" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCz" = ( +/turf/unsimulated/wall, +/area/centcom/holding) +"aCA" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"aCP" = ( +/obj/machinery/vending/cola{ + name = "Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aCQ" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aCR" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCS" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCV" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aCW" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDk" = ( +/obj/machinery/vending/cigarette{ + name = "cigarette machine"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aDl" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDm" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDy" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_r" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"aDz" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"aDA" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"aDB" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations Boarding Pod"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"aDC" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals - Holding Cell"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aDD" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Holding Cell" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDE" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aDF" = ( +/obj/machinery/door/blast/regular{ + id_tag = "CentComPort"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Arrivals Processing"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDQ" = ( +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"aDR" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1; + icon_state = "heater" + }, +/obj/structure/window/reinforced/crescent, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/specops/centcom) +"aDS" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aDT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDU" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aDV" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEd" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEe" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEf" = ( +/obj/machinery/computer/shuttle_control/specops{ + dir = 8 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEg" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEh" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id_tag = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEq" = ( +/obj/machinery/computer/prisoner{ + dir = 4; + name = "Implant Management" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEr" = ( +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEs" = ( +/obj/item/device/radio/intercom/specops{ + dir = 8; + pixel_x = 22; + pixel_y = 0 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEt" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEu" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEv" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEw" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEy" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/door/window/southright{ + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEC" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "specops_shuttle_port"; + name = "port docking hatch controller"; + pixel_x = 24; + pixel_y = 0; + tag_door = "specops_shuttle_port_hatch" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aED" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"aEE" = ( +/turf/unsimulated/wall, +/area/centcom/ferry) +"aEF" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/ferry) +"aEG" = ( +/obj/machinery/atm{ + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aEV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aEW" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_shuttle_port_hatch"; + locked = 1; + name = "Port Docking Hatch" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/specops/centcom) +"aEX" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_centcom_dock_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aEY" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/ferry) +"aEZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"aFa" = ( +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"aFb" = ( +/turf/space, +/area/centcom/ferry) +"aFc" = ( +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/holding) +"aFd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aFe" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aFo" = ( +/turf/unsimulated/floor{ + dir = 9; + icon_state = "vault" + }, +/area/centcom/ferry) +"aFp" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cell"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"aFq" = ( +/turf/space, +/area/centcom/holding) +"aFz" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aFA" = ( +/obj/machinery/acting/changer, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"aFB" = ( +/obj/item/stool, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"aFC" = ( +/obj/structure/table/standard, +/obj/item/paper, +/obj/item/pen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"aFD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aFK" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "specops_shuttle_fore"; + name = "forward docking hatch controller"; + pixel_x = 0; + pixel_y = -25; + tag_door = "specops_shuttle_fore_hatch" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aFL" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aFM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aFN" = ( +/obj/machinery/door/airlock/external{ + icon_state = "closed"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aFY" = ( +/obj/machinery/light/small/readylight{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aGa" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGb" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGc" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGd" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aGe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGf" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGg" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals East" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGq" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_shuttle_fore_hatch"; + locked = 1; + name = "Forward Docking Hatch" + }, +/obj/effect/shuttle_landmark/specops/start, +/turf/simulated/floor/plating, +/area/shuttle/specops/centcom) +"aGr" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGs" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGt" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGu" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals Bar" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGB" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGD" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"aGE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGF" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGO" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/obj/item/material/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar East"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aGP" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/obj/item/material/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aGQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGR" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aGS" = ( +/obj/machinery/status_display, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aGT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHb" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar Center" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHc" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHe" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHg" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4; + icon_state = "wooden_chair_wings" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHh" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/amanita_pie, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHi" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/bigbiteburger, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHj" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8; + icon_state = "wooden_chair_wings" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHl" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/stew, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHm" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHn" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 0; + pixel_y = 25; + tag_door = "centcom_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHo" = ( +/obj/machinery/computer/shuttle_control{ + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Centcom" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHp" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"aHq" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/boiledrice, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHr" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/beetsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHs" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/stuffing, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHt" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/soylenviridians, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHu" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHv" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHy" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aHz" = ( +/obj/structure/sign/redcross, +/turf/unsimulated/wall, +/area/centcom/holding) +"aHA" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Arrivals Medbay" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHB" = ( +/obj/structure/sign/warning/airlock, +/turf/unsimulated/wall, +/area/centcom/holding) +"aHC" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + glass = 1380; + icon_state = "closed"; + id_tag = "centcom_shuttle_bay_door"; + locked = 1; + name = "Transport Airlock" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/holding) +"aHD" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"aHF" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/bloodsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHG" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/tofukabob, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHH" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/poppypretzel, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHI" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/shoes/sandal/xeno/caligae/black, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aHJ" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aHK" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHL" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHM" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHN" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 0; + pixel_y = 29 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHO" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHR" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "centcom_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/effect/shuttle_landmark/ferry/start, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aHV" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/spesslaw, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHW" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/candiedapple, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHX" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/mushroomsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHY" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/meatsteak, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aHZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aId" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aIe" = ( +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aIf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aIh" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = list("ACCESS_BAR") + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aIi" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/book/manual/barman_recipes, +/obj/item/reagent_containers/glass/rag, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aIj" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aIk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aIl" = ( +/obj/effect/floor_decal/corner/lime, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIm" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIn" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aIq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aIt" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beachcorner" + }, +/area/centcom/holding) +"aIu" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/centcom/holding) +"aIv" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/centcom/holding) +"aIw" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/beach/sand{ + icon_state = "seashallow" + }, +/area/centcom/holding) +"aIx" = ( +/turf/unsimulated/wall, +/area/tdome) +"aIy" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/tdome) +"aIz" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aIA" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/wrench, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIB" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIC" = ( +/obj/effect/floor_decal/corner/lime/three_quarters, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aID" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIF" = ( +/turf/unsimulated/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/centcom/holding) +"aIG" = ( +/turf/unsimulated/beach/sand{ + icon_state = "seashallow" + }, +/area/centcom/holding) +"aIH" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aII" = ( +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aIJ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIK" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIL" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIM" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aIS" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aIT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aIU" = ( +/obj/structure/table/standard, +/obj/item/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIV" = ( +/obj/structure/table/standard, +/obj/item/cautery{ + pixel_y = 4 + }, +/obj/item/hemostat{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIW" = ( +/obj/structure/table/standard, +/obj/item/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/scalpel, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIX" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIY" = ( +/obj/structure/table/standard, +/obj/item/surgicaldrill, +/obj/item/circular_saw, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIZ" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJa" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aJg" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJk" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJl" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJm" = ( +/obj/machinery/optable, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJn" = ( +/obj/structure/hygiene/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJo" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJs" = ( +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJt" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJu" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJv" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJw" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/item/reagent_containers/spray/cleaner, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJx" = ( +/obj/machinery/computer/operating{ + dir = 8; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJy" = ( +/obj/structure/iv_drip, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJz" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/ivbag/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJA" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJB" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJC" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJD" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJE" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJL" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJN" = ( +/obj/machinery/computer/shuttle_control{ + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Centcom" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aJO" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aJW" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aJX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle"; + pixel_x = -24; + pixel_y = 0; + tag_door = "centcom_shuttle_hatch" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aJY" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aKa" = ( +/obj/structure/closet/secure_closet/bar, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKb" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKc" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKd" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome" + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"aKg" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"aKl" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKm" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKn" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKo" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKp" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKq" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKt" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKu" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKv" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKw" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKx" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKz" = ( +/turf/unsimulated/wall, +/area/acting/backstage) +"aKA" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKB" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKC" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"aKD" = ( +/obj/item/device/camera, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKE" = ( +/obj/structure/disposalpipe/segment, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aKI" = ( +/obj/effect/landmark{ + name = "ActorSpawn" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKJ" = ( +/obj/machinery/acting/wardrobe, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKK" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/device/paint_sprayer, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKL" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKM" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor_freezer{ + amount = 50 + }, +/obj/item/stack/tile/floor_freezer{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKN" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKO" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/grass{ + amount = 50 + }, +/obj/item/stack/tile/grass{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKP" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKQ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKR" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKS" = ( +/obj/structure/table/rack, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKT" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKU" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKV" = ( +/obj/structure/table/rack, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKW" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKX" = ( +/obj/structure/table/rack, +/obj/item/stack/material/silver{ + amount = 50 + }, +/obj/item/stack/material/silver{ + amount = 50 + }, +/obj/item/stack/material/silver{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKY" = ( +/obj/machinery/gibber{ + anchored = 0 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aKZ" = ( +/obj/machinery/papershredder, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLa" = ( +/obj/machinery/recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLb" = ( +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLe" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLf" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"aLh" = ( +/obj/item/paper{ + info = "\[center]\[b]READ INSTRUCTIONS CAREFULLY\[/b]\[/center]\[br]\[br]Hello! Welcome and congratulations on being hired for NanoTrasen's new Television initiative. You are now tasked with the creation and production of NanoTrasen brand television that is to be broadcasted to all of our stations!\[br]\[br] We've outfitted these facilities with all the materials and objects you will need.\[br]On the port side you'll find various venders and machines, namely the Wardrobe Dispenser, which will dispense holoclothing and items for you to use, and a Quickee brand plastic surgery machine (which I would remind you you are contractually obligated to \[b]not\[/b] report to the authorities.) which can change your appearance into anything you want, even other races. Stern and aft you'll find all the materials we could muster up on short notice. Use it to decorate the stage to your liking. Starboard you'll find gases, microwaves, hydroponic trays and the like. Go silly! This is already paid for (as are you) so do what you want and entertain!"; + name = "Actor's Guild Instruction Pamphlet" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLi" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/melee/energy/axe, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLj" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLk" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLl" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/melee/energy/axe, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLm" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLn" = ( +/obj/machinery/door/airlock/glass{ + name = "Stage" + }, +/turf/simulated/floor, +/area/acting/backstage) +"aLo" = ( +/obj/machinery/biogenerator, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLp" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLq" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLr" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLs" = ( +/obj/structure/disposalpipe/segment, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLt" = ( +/obj/machinery/vending/hydroseeds, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLu" = ( +/turf/simulated/floor/tiled, +/area/acting/stage) +"aLv" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/acting/stage) +"aLw" = ( +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLx" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/red, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLy" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLz" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"aLA" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLC" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aLD" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"aLE" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/green, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aLF" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/space, +/area/space) +"aLG" = ( +/turf/unsimulated/mineral, +/area/space) +"aLI" = ( +/obj/machinery/vending/hydronutrients, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLJ" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"aLK" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"aLL" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space, +/area/space) +"aLO" = ( +/obj/machinery/vending/medical, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/acting/stage) +"aLQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/acting/stage) +"aLR" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aLS" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome - Red Team"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"aLT" = ( +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"aLU" = ( +/obj/machinery/flasher{ + id_tag = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"aLV" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + c_tag = "Green Team"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"aLW" = ( +/turf/simulated/mineral, +/area/merchant_station) +"aMb" = ( +/obj/machinery/vending/robotics, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aMd" = ( +/obj/machinery/atmospherics/pipe/vent, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"aMe" = ( +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome Arena"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"aMf" = ( +/turf/simulated/wall/prepainted, +/area/merchant_station) +"aMg" = ( +/turf/simulated/floor/asteroid, +/area/merchant_station) +"aMh" = ( +/obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"aMm" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aMn" = ( +/obj/machinery/camera/network/thunder{ + anchored = 0; + c_tag = "Television"; + name = "Movable Camera" + }, +/turf/simulated/floor/tiled, +/area/acting/stage) +"aMo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aMp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aMq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aMr" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aMs" = ( +/obj/structure/closet{ + name = "Wardrobe" + }, +/obj/item/clothing/shoes/leather, +/obj/item/clothing/under/blazer, +/obj/item/clothing/under/lawyer/black, +/obj/item/clothing/under/suit_jacket/navy, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMu" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/obj/effect/landmark/start{ + name = "Merchant" + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMz" = ( +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aMA" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aMB" = ( +/obj/item/storage/secure/safe{ + pixel_x = -25 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMC" = ( +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMD" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aME" = ( +/obj/structure/closet{ + name = "Wardrobe" + }, +/obj/item/clothing/shoes/black, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/skirt, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aMF" = ( +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aMG" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/start{ + name = "Merchant" + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aMH" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"aMI" = ( +/obj/machinery/light/small, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"aMJ" = ( +/obj/item/handcuffs/cable/tape, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"aMK" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"aMR" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aMS" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aMT" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aMU" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMV" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMW" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/bamboo, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood, +/area/merchant_station) +"aMY" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aMZ" = ( +/obj/structure/table/woodentable, +/obj/random/single/lighter, +/obj/random/toy, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aNa" = ( +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aNb" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aNc" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/merchant_station) +"aNh" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo/random = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aNi" = ( +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aNj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aNk" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aNl" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aNm" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"aNn" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aNo" = ( +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"aNp" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"aNq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/computer/cryopod{ + density = 0; + pixel_y = 32 + }, +/obj/item/roller, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"aNr" = ( +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = 22 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"aNs" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aNt" = ( +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/wood, +/area/merchant_station) +"aNu" = ( +/obj/machinery/door/airlock{ + name = "Room A" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"aNv" = ( +/obj/item/storage/secure/safe{ + pixel_x = -25 + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aNw" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aNx" = ( +/obj/structure/hygiene/shower{ + dir = 4; + icon_state = "shower" + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aNA" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aNB" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aNC" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/merchant_station) +"aNI" = ( +/obj/machinery/vending/containers, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aNJ" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/acting/stage) +"aNK" = ( +/obj/machinery/chemical_dispenser/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aNL" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aNM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aNN" = ( +/obj/item/extinguisher, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aNO" = ( +/obj/machinery/atmospherics/valve, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aNP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aNQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"aNR" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"aNS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aNT" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/merchant_station) +"aNU" = ( +/turf/simulated/floor/wood, +/area/merchant_station) +"aNV" = ( +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aNW" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aNX" = ( +/obj/machinery/door/airlock{ + name = "Room B" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"aNY" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aNZ" = ( +/obj/structure/hygiene/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 0 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOa" = ( +/mob/living/simple_animal/tindalos{ + name = "Eddy" + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOb" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOc" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOe" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOf" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOh" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/largecrate, +/obj/random/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOr" = ( +/obj/machinery/pipedispenser, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aOs" = ( +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aOt" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/sleeping_agent{ + pixel_x = 1 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aOu" = ( +/obj/item/wrench, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aOv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aOw" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/space, +/area/merchant_station) +"aOx" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aOy" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aOz" = ( +/obj/machinery/door/window/northright, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aOA" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aOB" = ( +/obj/machinery/jukebox, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aOC" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo/random = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aOD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/merchant_station) +"aOE" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/pint, +/turf/simulated/floor/wood, +/area/merchant_station) +"aOF" = ( +/obj/machinery/door/airlock/glass{ + name = "Lounge" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"aOG" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOI" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOJ" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aOK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOL" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aON" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aOY" = ( +/obj/machinery/acting/changer, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aOZ" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"aPa" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPb" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPc" = ( +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPe" = ( +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPf" = ( +/obj/effect/wingrille_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"aPg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aPh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/merchant_station) +"aPi" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/merchant_station) +"aPj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/merchant_station) +"aPk" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aPl" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPm" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPn" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPo" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPp" = ( +/obj/machinery/door/airlock{ + id_tag = "rbath"; + name = "Bathroom" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"aPq" = ( +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aPA" = ( +/obj/machinery/vending/props, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aPB" = ( +/obj/machinery/newscaster{ + pixel_y = -27 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aPC" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aPD" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aPE" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aPF" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"aPH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPI" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPJ" = ( +/obj/machinery/button/blast_door{ + dir = 1; + icon_state = "computer"; + id_tag = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPK" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPL" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPN" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPO" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPP" = ( +/obj/structure/table/standard, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPQ" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPR" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPS" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aPT" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/computer/shuttle_control/merchant{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPU" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aPX" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Office" + }, +/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/wood, +/area/merchant_station) +"aPY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/merchant_station) +"aQa" = ( +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aQb" = ( +/obj/structure/table/woodentable, +/obj/item/material/ashtray/bronze, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/clothing/mask/smokable/cigarette/cigar/havana, +/turf/simulated/floor/wood, +/area/merchant_station) +"aQc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/merchant_station) +"aQd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/merchant_station) +"aQe" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"aQf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/merchant_station) +"aQg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQi" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQj" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQk" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQl" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQm" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQo" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aQp" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_access = list("ACCESS_MERCHANT") + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aQF" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQG" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/random/handgun, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQH" = ( +/obj/structure/table/reinforced, +/obj/random/loot, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQI" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQJ" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aQP" = ( +/obj/machinery/door/airlock/hatch{ + name = "Storage" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"aRl" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/sign/warning/docking_area, +/turf/space, +/area/space) +"aRm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/space, +/area/merchant_station) +"aRn" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/prepainted, +/area/merchant_station) +"aRo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRr" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRs" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRt" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRu" = ( +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRv" = ( +/obj/structure/table/rack, +/obj/item/storage/bag/cash, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRA" = ( +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/shuttle/merchant/home) +"aRB" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + icon_state = "heater" + }, +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/shuttle/merchant/home) +"aRC" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 4; + icon_state = "burst_r"; + name = "propulsion" + }, +/turf/space, +/area/shuttle/merchant/home) +"aRD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRE" = ( +/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/merchant_station) +"aRF" = ( +/obj/machinery/door/firedoor, +/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/merchant_station) +"aRG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRI" = ( +/obj/structure/table/steel, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/random/clipboard, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRU" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aRX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + name = "Warehouse" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRY" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aRZ" = ( +/obj/machinery/computer/modular/preset/merchant{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSh" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aSj" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSk" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aSl" = ( +/obj/structure/table/reinforced, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSm" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSn" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/door/window/brigdoor/southright, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "merchantbase"; + name = "Merchant Loading Shutters"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSp" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSq" = ( +/obj/machinery/vending/fashionvend, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSr" = ( +/obj/machinery/merchant_pad, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSy" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aSz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aSA" = ( +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aSB" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aSC" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/item/storage/secure/safe{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"aSD" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_ship_dock"; + pixel_x = -24; + pixel_y = 0; + tag_airpump = "merchant_ship_vent"; + tag_chamber_sensor = "merchant_ship_sensor"; + tag_exterior_door = "merchant_ship_exterior"; + tag_interior_door = "merchant_ship_interior" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aSE" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aSF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/eastright, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aSG" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aSK" = ( +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aSL" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + name = "exterior access button"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + name = "interior access button"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 2; + id_tag = "merchant_ship_vent" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aSO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "merchantbase"; + name = "Merchant Loading Shutters" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSS" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aST" = ( +/obj/machinery/door/window/southleft, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor_switch{ + id = "merchantbelt2" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aSU" = ( +/obj/machinery/door/window/southright, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aTc" = ( +/obj/machinery/computer/shuttle_control/merchant{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aTd" = ( +/obj/machinery/button/blast_door{ + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + pixel_x = 0; + pixel_y = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aTe" = ( +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"aTf" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit" + }, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"aTg" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTi" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTj" = ( +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_ship_interior"; + locked = 1; + name = "Ship Exterior" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aTn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aTo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_ship_sensor"; + pixel_x = 28; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aTp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "merchantbase"; + name = "Merchant Loading Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aTq" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aTr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aTs" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt2" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aTv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aTw" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aTx" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aTy" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/random/handgun, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"aTA" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTB" = ( +/obj/structure/bed/chair/office/comfy/black{ + dir = 4; + icon_state = "comfyofficechair_preview" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTD" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTF" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "merchant_ship_vent" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aTI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aTJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aTK" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aTL" = ( +/obj/effect/decal/cleanable/ash, +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aTM" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aTQ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTR" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/clipboard, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"aTT" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTU" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTX" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aTY" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_ship_exterior"; + locked = 1; + name = "Ship Exterior" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/effect/shuttle_landmark/merchant/start, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aTZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUa" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUc" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUd" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUe" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUf" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aUh" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_station_exterior"; + locked = 1; + name = "Station Exterior" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aUi" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUj" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/conveyor_switch{ + id = "merchantbelt1" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUl" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aUv" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4; + icon_state = "burst_l"; + name = "propulsion" + }, +/turf/space, +/area/shuttle/merchant/home) +"aUw" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_station_dock"; + pixel_x = -28; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT"); + tag_airpump = "merchant_station_vent"; + tag_chamber_sensor = "merchant_station_sensor"; + tag_exterior_door = "merchant_station_exterior"; + tag_interior_door = "merchant_station_interior"; + tag_interior_sensor = null + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_station_sensor"; + pixel_x = -28; + pixel_y = -10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"aUx" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "merchant_station_vent" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aUy" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_station_interior"; + locked = 1; + name = "Station Exterior" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aUz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUB" = ( +/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/merchant_station) +"aUC" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + name = "Warehouse" + }, +/obj/machinery/door/firedoor, +/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/merchant_station) +"aUD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUF" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUO" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/turf/space, +/area/merchant_station) +"aUP" = ( +/obj/machinery/fabricator/hacked, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUQ" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUR" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random/powercell, +/obj/item/stock_parts/computer/hard_drive/portable/merchant, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUS" = ( +/obj/machinery/suit_storage_unit/standard_unit{ + req_access = list("ACCESS_MERCHANT") + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUV" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUX" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/under/rank/psych/turtleneck{ + desc = "A turqouise turtleneck and a pair of dark blue slacks."; + name = "turtleneck" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUY" = ( +/obj/structure/table/rack, +/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/plasteel{ + amount = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aUZ" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled/airless, +/area/merchant_station) +"aVk" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"aVl" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVr" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVt" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVv" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVw" = ( +/turf/simulated/floor/plating, +/area/merchant_station) +"aVx" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aVF" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"aVG" = ( +/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/airless, +/area/merchant_station) +"aVH" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/stack/material/plastic{ + amount = 10 + }, +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/item/device/paint_sprayer, +/turf/simulated/floor/plating, +/area/merchant_station) +"aVI" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVJ" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/engivend{ + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aVK" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/plating, +/area/merchant_station) +"aVL" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVP" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVQ" = ( +/obj/structure/table/rack, +/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 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aVR" = ( +/obj/structure/table/rack, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aVS" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/vox/vox_casual, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWg" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = null; + charge = 2.5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 0; + output_attempt = 1; + output_level = 250000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWh" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWi" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWk" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWl" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWm" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWn" = ( +/obj/structure/table/steel, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWo" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWp" = ( +/obj/structure/table/rack, +/obj/random/medical, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWy" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/tracker, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWD" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWE" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWF" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWH" = ( +/obj/machinery/atmospherics/omni/filter{ + active_power_usage = 2500; + tag_east = 1; + tag_south = 4; + tag_west = 2 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWI" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWJ" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 3; + tag_west = 2 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWK" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWL" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWM" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/item/tank/emergency/oxygen/double, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aWW" = ( +/obj/machinery/power/solar_control/autostart, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWX" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aWY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/merchant_station) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXa" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 2500; + tag_east = 1; + tag_east_con = 0.21; + tag_south = 2; + tag_west = 1; + tag_west_con = 0.79 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXc" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXe" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXr" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"aXu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXI" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9; + icon_state = "intact" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/tank/nitrogen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXK" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1; + start_pressure = 740.5 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/merchant_station) +"aXL" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1; + start_pressure = 740.5 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"aYf" = ( +/obj/structure/cable, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"aZb" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"baD" = ( +/obj/item/device/radio/intercom/syndicate{ + dir = 8; + pixel_x = 22 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_elite_squad) +"bcS" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"bgb" = ( +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/item/clothing/head/bandana{ + pixel_y = -10 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bhb" = ( +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bib" = ( +/obj/structure/closet/athletic_mixed, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bjb" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert_dug" + }, +/area/centcom/holding) +"bkb" = ( +/obj/item/inflatable_duck, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"blb" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"bmb" = ( +/mob/living/simple_animal/crab, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bnb" = ( +/obj/item/beach_ball, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"bnc" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"bob" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar West"; + dir = 4 + }, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bpb" = ( +/obj/item/inflatable_duck, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bqb" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"brb" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"bsb" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/accessory/storage/holster, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"btb" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/recharger, +/obj/item/device/eftpos, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"btO" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"bub" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"bvb" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"bwb" = ( +/obj/machinery/computer/modular/preset/security, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"bxb" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals North"; + dir = 8 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"byb" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"bBb" = ( +/obj/machinery/computer/modular/preset/library{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"bCb" = ( +/obj/item/paper_bin, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"bDb" = ( +/obj/machinery/bookbinder, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"bEb" = ( +/obj/machinery/computer/modular/preset/library, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"bFb" = ( +/obj/machinery/libraryscanner, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/acting/backstage) +"bGb" = ( +/obj/structure/table/holotable, +/obj/item/toy/ringbell, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"bHb" = ( +/obj/structure/table/holotable, +/obj/item/device/megaphone, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"bKU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"bMb" = ( +/obj/item/storage/mirror{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"bOb" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"bPb" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"bRY" = ( +/obj/effect/floor_decal/beach/corner{ + dir = 8; + icon_state = "beachbordercorner" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"cay" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"cjX" = ( +/obj/effect/landmark{ + name = "Syndicate-Commando" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"cqu" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"czt" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"cCV" = ( +/obj/machinery/hologram/holopad/longrange, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"cMe" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"cMP" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 9; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"cMQ" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"djm" = ( +/obj/item/beach_ball/holovolleyball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"dnO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"dzK" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"dBi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"dCA" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"dIU" = ( +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"dJV" = ( +/obj/effect/floor_decal/beach/corner, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"dMH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"dNG" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 1; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"dTZ" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"dZC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/obj/structure/holonet/end{ + dir = 8; + icon_state = "volleynet_end" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"efq" = ( +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_cafe) +"etB" = ( +/obj/machinery/button/blast_door{ + id_tag = "syndicate_elite_mech_room"; + name = "Mech Access"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"euY" = ( +/turf/simulated/wall/wood, +/area/holodeck/source_cafe) +"ezo" = ( +/obj/structure/table/holo_woodentable, +/obj/item/device/synthesized_instrument/violin{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"eGq" = ( +/obj/machinery/vending/engineering, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"eRk" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken1" + }, +/area/holodeck/source_temple) +"fcv" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"ffh" = ( +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"fpW" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"fxB" = ( +/obj/structure/bed/chair/wood{ + dir = 4; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"fJf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"glo" = ( +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"gnX" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"gse" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"gtn" = ( +/obj/structure/curtain, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken4" + }, +/area/holodeck/source_temple) +"hzB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"hJx" = ( +/turf/simulated/wall/r_titanium, +/area/centcom/evac) +"icO" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"ikd" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"iqj" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"izl" = ( +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"iBC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"iIc" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"iJF" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken6" + }, +/area/holodeck/source_temple) +"iSJ" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/transport1/centcom) +"jed" = ( +/obj/effect/floor_decal/beach{ + dir = 1; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"jgg" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"jhl" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"jlA" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/plating, +/area/supply/dock) +"joZ" = ( +/obj/structure/fountain/mundane{ + alpha = 204; + pixel_x = 0 + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"jps" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_volleyball) +"jvm" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/holodeck/source_volleyball) +"jxq" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"jHQ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"jSi" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"jXw" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"kce" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/holodeck/source_volleyball) +"kfk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/holodeck/source_volleyball) +"kjW" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"kBT" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"kEf" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"kSV" = ( +/obj/machinery/portable_atmospherics/powered/pump, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"ljS" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"lwD" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"lGk" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"lIX" = ( +/obj/structure/curtain{ + color = "#cd6889" + }, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/holodeck/source_temple) +"lLj" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/carpet, +/area/merchant_station) +"lQU" = ( +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"lRq" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"lSD" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"lWf" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"mjR" = ( +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"mlL" = ( +/obj/structure/table/holo_woodentable, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"mmW" = ( +/obj/structure/curtain{ + color = "#68ccab" + }, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken6" + }, +/area/holodeck/source_temple) +"moq" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"mrn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"myy" = ( +/obj/item/device/radio/intercom/syndicate{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"mRm" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/holodeck/source_volleyball) +"mSZ" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"mTy" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 10; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"mXz" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"niJ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"ntZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"nJl" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"nQJ" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Airlock" + }, +/obj/machinery/door/blast/regular{ + id_tag = "syndicate_elite_mech_room"; + name = "Mech Room Door" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"occ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"olJ" = ( +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"oql" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"oFc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"pgJ" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"piR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"pqa" = ( +/turf/simulated/wall/r_titanium, +/area/shuttle/transport1/centcom) +"psv" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"pAh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"pEp" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/merchant_station) +"pET" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"pUt" = ( +/obj/effect/floor_decal/stoneborder, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"pWv" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/glass/rag{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"qir" = ( +/obj/effect/floor_decal/stoneborder/corner, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"qoH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"quq" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/food/drinks/teapot{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"qIk" = ( +/obj/machinery/door/unpowered/simple/sandstone, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"qMl" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 8; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"qRm" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/holodeck/source_volleyball) +"qTC" = ( +/obj/structure/decoy{ + icon_state = "ai-malf"; + name = "GLaDOS" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_elite_squad) +"qZF" = ( +/obj/structure/holonet, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"reF" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"rms" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_volleyball) +"rpk" = ( +/turf/simulated/wall/r_titanium, +/area/syndicate_elite_squad) +"rqJ" = ( +/obj/machinery/door/unpowered/simple/wood, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"rxE" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/supply/dock) +"rIb" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/holodeck/source_temple) +"rIu" = ( +/turf/simulated/wall/sandstone, +/area/holodeck/source_temple) +"rJY" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_temple) +"skD" = ( +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"szh" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"sGJ" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/holodeck/source_temple) +"sHB" = ( +/obj/structure/window/reinforced/crescent, +/obj/structure/shuttle/engine/heater{ + dir = 1; + icon_state = "heater" + }, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"sWJ" = ( +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"tcf" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/holodeck/source_temple) +"tff" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"thM" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"tsJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"twU" = ( +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"tDw" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 4; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"tGT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_meetinghall) +"tGX" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"tQu" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"ufC" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"uly" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"upH" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken4" + }, +/area/holodeck/source_temple) +"uvD" = ( +/obj/machinery/button/blast_door{ + id_tag = "syndicate_elite"; + name = "Hull Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"uzq" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"uFd" = ( +/obj/effect/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"uIr" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 4; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"uJE" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 8; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_temple) +"uJY" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"uZF" = ( +/turf/simulated/floor/plating, +/turf/simulated/wall/r_titanium, +/area/centcom/evac) +"vbR" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"vgY" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken2" + }, +/area/holodeck/source_temple) +"vOe" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 1; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"vQS" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_temple) +"wda" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"wjw" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 8; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_temple) +"wkp" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/hull, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"wyK" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/transport1/centcom) +"wCv" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"wCU" = ( +/obj/structure/window/holowindow/full, +/turf/simulated/floor/holofloor, +/area/holodeck/source_cafe) +"wDD" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_temple) +"xqW" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"xHn" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8; + icon_state = "spline_plain" + }, +/obj/structure/holonet/end, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"xTc" = ( +/obj/structure/table/holo_woodentable, +/obj/item/tray{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"xTh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_volleyball) +"xXB" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) + +(1,1,1) = {" +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(2,1,1) = {" +ala +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +apO +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKI +aKI +aLm +aLt +aLI +aLO +aMb +aMm +aMz +aMR +aNh +aNI +aOr +aOY +aPA +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(3,1,1) = {" +ala +alg +alr +alJ +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKI +aLh +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aPB +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(4,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKJ +aLe +aKz +aKz +aKz +aKz +aKz +aLn +aKz +aKz +aKz +aKz +aKz +aLe +aKK +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(5,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alX +amK +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKK +aLe +aKz +aLu +aLu +aLP +aLu +aLu +aLu +aLP +aLu +aLu +aKz +aLe +aPC +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(6,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alX +alr +apA +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKL +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKM +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(7,1,1) = {" +ala +alg +alr +alr +alr +alr +amK +alr +anb +anb +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKM +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKN +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(8,1,1) = {" +ala +alg +alr +alr +alr +alr +alX +anb +ano +anP +anb +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKN +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKL +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(9,1,1) = {" +ala +alg +als +alr +alr +alr +alr +anb +anp +anQ +anb +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKL +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKO +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(10,1,1) = {" +ala +alg +als +alr +alr +alr +alr +alr +anb +anb +alr +alr +alr +aph +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKO +aLe +aKz +aLv +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aNJ +aKz +aLe +aKP +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(11,1,1) = {" +ala +alg +als +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKP +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKQ +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(12,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +aph +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKQ +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKR +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(13,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +amK +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKR +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKS +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(14,1,1) = {" +ala +alg +als +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +aph +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKS +aLe +aLn +aLu +aLu +aLu +aLu +aMn +aLu +aLu +aLu +aLu +aLn +aLe +aKT +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(15,1,1) = {" +ala +alg +als +alr +alr +alr +alr +alr +alr +anR +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKT +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKU +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(16,1,1) = {" +ala +alg +als +alr +alX +alJ +alr +alr +alr +alr +alr +alr +alr +api +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +avY +avY +avY +avY +avY +avY +avY +avY +avY +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKU +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKV +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(17,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awW +axi +avY +axQ +axi +axQ +axi +axQ +aAl +avY +avY +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKV +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKW +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(18,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awr +awr +awZ +awr +awr +awr +awr +awr +awr +awr +awr +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKW +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aKX +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(19,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alJ +alX +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awX +awr +avY +awr +awr +awr +awr +awr +awr +awr +awr +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKX +aLe +aKz +aLv +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aNJ +aKz +aLe +aPD +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(20,1,1) = {" +ala +alg +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awY +axj +avY +axR +axR +ayN +axR +axR +awY +awY +axj +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKY +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aPE +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(21,1,1) = {" +ala +alg +alr +alK +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alr +alg +apP +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +avY +avY +awZ +avY +avY +avY +avY +ayc +ayc +avY +aAm +aAm +avY +avY +avY +avY +avY +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aKZ +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +aPF +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(22,1,1) = {" +ala +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +alg +apO +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +apZ +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awg +awL +awp +axk +awp +axS +ayc +ayO +azo +azQ +awp +awp +ayc +aBs +awp +awp +aCj +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aLa +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +bDb +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(23,1,1) = {" +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +avY +avY +awp +awp +awp +axT +ayc +ayP +awp +awp +awp +awp +ayc +aBt +awp +awp +aCj +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aLb +aLe +aKz +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aLu +aKz +aLe +bEb +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(24,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awh +awp +awp +awp +awp +axU +ayc +ayQ +awp +awp +awp +awp +ayc +aBu +awp +awp +aCk +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aLc +aLe +aKz +aLu +aLu +aLQ +aLu +aLu +aLu +aLQ +aLu +aLu +aKz +aLe +bFb +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(25,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aeB +aeB +aeB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avY +awi +awp +awp +awp +awp +axV +ayc +ayR +awp +awp +awp +awp +ayc +aBv +awp +awp +aCl +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aLd +aLe +aKz +aKz +aKz +aKz +aKz +aLn +aKz +aKz +aKz +aKz +aKz +aLe +aLc +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(26,1,1) = {" +aab +aab +aab +aab +hJx +hJx +hJx +hJx +hJx +aab +aab +aeB +aeB +aeB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +asQ +avY +awj +awp +awp +awp +awp +axW +ayc +ayS +azp +awp +awp +awp +ayc +aBw +awp +awp +aCm +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLe +aLd +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(27,1,1) = {" +aab +aab +aab +aab +abx +sHB +kSV +ffh +uZF +hJx +aab +aeB +aeB +aeB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +avY +awk +awp +awp +awp +awp +axX +avY +ayc +ayc +avY +aAm +aAm +avY +awp +awp +awp +aCn +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aLe +aLe +aLo +aLw +aLw +aLR +bCb +aMo +aMo +aMo +aNi +aNK +aOs +aLe +aKJ +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(28,1,1) = {" +aab +aab +aab +aab +aby +sHB +pET +ffh +ffh +hJx +aab +aeB +aeB +aeB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aLW +avW +avT +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +avW +avT +avT +avW +avT +avT +avT +avT +avT +aab +aLF +aab +aab +aab +aab +asP +asR +asR +asR +asR +izl +atB +atU +izl +asR +izl +atB +atU +izl +asR +asR +asR +asR +avY +awl +awp +awp +awp +awp +awp +awp +awp +awp +azR +awp +awp +aAZ +awp +awp +awp +axV +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKz +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aKz +aKz +aKz +aKz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(29,1,1) = {" +aab +aab +aab +aab +abz +sHB +uZF +hJx +adK +hJx +hJx +hJx +aeI +hJx +hJx +hJx +agK +hJx +hJx +hJx +hJx +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aab +avD +avD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avD +aab +aab +aab +aab +avD +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asR +asR +izl +izl +atC +atC +izl +izl +izl +atC +atC +izl +izl +asR +asR +asR +avY +awm +awp +axa +awp +awp +awp +awp +awp +awp +azR +awp +awp +aAZ +awp +awp +awp +aCo +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aJj +aJj +aJj +aJj +aJj +aJj +aJj +aJj +aJj +aJs +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(30,1,1) = {" +aab +aab +aab +aab +hJx +hJx +hJx +adk +adm +adW +ael +aeC +aeJ +acH +hJx +agp +agL +ahn +ahU +ahn +hJx +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +avD +avD +avD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +avD +aab +aWy +aab +avD +avD +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asR +izl +izl +izl +atD +atV +aug +izl +auD +auR +auY +izl +izl +izl +asR +asR +avY +avY +avY +avY +avY +avY +avY +avY +ayc +ayc +avY +aAn +aAE +avY +ayc +ayc +avY +avY +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aEE +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aII +aII +aII +aII +aII +aII +aII +aII +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aNj +aIx +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(31,1,1) = {" +aab +aao +aao +aao +aao +hJx +acH +adl +adm +adl +adn +adl +adm +afi +hJx +agp +agL +agL +agL +agL +hJx +hJx +hJx +hJx +hJx +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aLW +avD +aab +aab +avD +avD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aVF +aVF +aWz +aVF +aVF +aVF +aVF +aab +aab +aLF +aab +aab +aab +aab +asP +asR +izl +izl +atc +atn +atd +atd +auh +izl +auD +auD +auZ +avj +avp +avE +izl +asR +avY +awn +awM +avY +axl +axF +axY +ayo +awp +awp +azS +awp +awp +aBa +aBx +aBI +aBZ +aCp +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aEE +bgb +aHD +aHD +aHD +aHD +bmb +bob +aHD +bjb +aHD +aHp +aIt +aCz +aII +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aLx +aLx +aLx +aLx +aLx +aII +aMS +aII +aII +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(32,1,1) = {" +aab +aao +aao +aao +aao +ace +acI +adm +adm +adm +adm +adm +adm +adm +hJx +agq +agL +agL +agL +agL +hJx +aiY +ajm +ajA +lGk +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aMf +aOw +aOw +aOw +aOw +aMf +aab +aab +aRA +aSy +aSy +aSy +aRA +aab +aab +aab +aVk +aVG +aVG +aWA +aWV +aWV +aWV +aWV +aYf +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asV +atd +atd +atd +atd +aui +izl +auE +auD +auD +auD +auD +avF +izl +asR +avY +awo +awo +avY +awp +awp +awp +awp +awp +awp +azS +awp +awp +awp +awp +awp +awp +aCq +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aEE +bhb +aHD +aHp +bkb +aHD +aHD +aHp +bqb +aHD +aHD +aIt +aIF +aCz +aII +aIx +aKa +aKa +aKt +aKt +aIx +aIx +aIx +aLy +aLy +aLy +aLy +aLy +aLy +aIx +aIx +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(33,1,1) = {" +aab +aao +aao +aao +aao +hJx +acJ +adl +adm +adl +aem +aem +adl +adm +hJx +agr +agM +aho +agr +agM +hJx +aen +adl +ajB +lGk +aab +aab +aLW +aLW +aLW +aLW +aMf +aMf +aMf +aOx +aPb +aPT +aQF +aOw +aab +aab +aRU +aSz +aTc +aTv +aTM +aab +aab +aab +aab +aab +avD +aWz +aab +aab +avD +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asW +ate +ato +asW +atd +auj +izl +auD +auD +auD +auD +auD +avG +izl +asR +avY +awp +awp +awp +awp +awp +awp +awp +awp +azq +avY +aAo +axH +axH +axH +axH +awp +axt +avY +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aEE +bhb +aHD +aHp +aHp +aHD +aHD +aHp +brb +aHD +aIt +aIF +aIG +aCz +aII +aIx +aKb +aKb +aKb +aKA +aIx +aLi +aLp +aLz +aLz +aLz +aLz +aLz +aLz +aMT +aNk +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(34,1,1) = {" +aab +aab +aab +aab +aab +hJx +acK +adn +adm +adX +ael +ael +aeK +adm +adm +adm +adm +adm +adm +adm +aiJ +adm +adX +ajC +lGk +aab +aab +aLW +aLW +aLW +aLW +aMf +aNp +aNp +aOy +aPc +aPU +aQG +aOw +aab +aab +aRU +aSA +aTd +aTw +aTM +aab +aab +aab +aab +aVF +aVF +aWz +aVF +aVF +aVF +aVF +avD +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asW +atf +atp +asW +atd +auk +izl +auF +auD +auD +avk +avq +avH +izl +asR +avY +awq +awp +awp +awp +awp +awp +awp +awp +axV +avY +aAp +aAF +aBb +aBc +aBJ +awp +axH +ayc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aEE +bhb +aHD +aHp +aHD +aHp +bnb +aHp +aHp +aIt +aIF +aIG +aIG +aCz +aII +aIx +aKb +aKb +aKb +aKB +aIx +aLi +aLp +aLz +aLJ +aLz +aLz +aLJ +aLz +aMT +aNk +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(35,1,1) = {" +aab +aap +aap +aap +aap +hJx +acL +adl +adm +adX +ael +ael +aeK +adm +adl +adl +agN +ahp +agO +air +hJx +aiZ +adl +ajD +lGk +aab +aab +aLW +aLW +aLW +aLW +aMf +aNq +aNQ +aOz +aPd +aPV +aQH +aOw +aab +aab +aRU +aSB +cCV +aTx +aTM +aab +aab +aab +aVk +aVG +aVG +aWA +aWV +aWV +aWV +aWV +aYf +aab +aLF +aab +aab +aab +aab +asP +asR +izl +izl +izl +izl +izl +atr +izl +izl +izl +atr +izl +izl +izl +izl +izl +asR +avY +awr +awp +awp +axm +axG +axZ +ayp +ayT +axW +avY +aAq +aAF +aBc +aBy +aBJ +awp +axH +ayc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aEE +bib +aHD +bjb +aHD +blb +aHp +aHp +aIt +aIF +aIG +aIG +aIG +aCz +aII +aJW +aKb +aKb +aKb +aKB +aIx +aLi +aLp +aLz +aLz +aLS +aLz +aLz +aLz +aMT +aNk +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(36,1,1) = {" +aab +aap +aap +aap +aap +acf +acM +adm +adm +adl +aen +aen +adl +adm +adm +adm +agO +ahq +ahV +ahV +hJx +adl +ajn +ajE +lGk +aab +aab +aLW +aLW +aLW +aLW +aMf +aNr +aNR +aOA +aPe +aPW +aQI +aOw +aab +aab +aRA +aSC +aTe +aTy +aRA +aab +aab +aab +aab +avD +aab +aWz +avD +aab +avD +avD +aab +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asX +atd +atq +atd +atd +atd +atq +atd +atd +atd +atq +wkp +avI +wkp +asR +avY +awr +awp +awp +axm +avY +avY +avY +ayc +ayc +avY +aAq +aAF +aBd +aBz +aBJ +awp +axH +ayc +aab +aDy +aDQ +uFd +uFd +uFd +uFd +uFd +uFd +uFd +uFd +aab +aab +aEE +bib +aHp +aHD +aHD +aHD +aHp +bpb +aIu +aIG +aIG +aIG +aIG +aCz +aII +aIx +aKb +aKb +aKb +aKb +aIx +aLi +aLp +aLz +aLJ +aLz +aLz +aLJ +aLz +aMT +aNk +aIx +aII +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(37,1,1) = {" +aab +aap +aap +aap +aap +hJx +acH +adl +adm +adm +adm +adm +adm +adm +adm +adm +agP +ahr +ahV +ahV +hJx +hJx +hJx +hJx +hJx +aab +aab +aLW +aLW +aLW +aMf +aMf +aMf +aMf +aMf +aPf +aPX +aMf +aMf +aRm +aRA +aRA +aRA +aTf +aRA +aRA +aRA +aab +aab +aab +aVF +aVF +aWz +aVF +aVF +aVF +aVF +aab +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asX +atd +atd +atd +ats +atd +atd +atd +ats +atd +atd +avs +avJ +avS +asR +avY +aws +awp +awp +axn +avY +aya +awp +awp +azr +azr +awp +awp +awp +awp +awp +awp +axH +ayc +aab +aDz +aDR +aEd +aEq +aEB +aEV +aEV +aEB +aFK +uFd +uFd +aab +aEE +aGd +aHg +aHg +aGd +aHg +aHg +aGd +aIv +aIG +aIG +aIG +aIG +aCz +aII +aIx +aKc +aKc +aKu +aKb +aIx +aLi +aLp +aLz +aLz +aLz +aLz +aLz +aLz +aMT +aNk +aIx +aII +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(38,1,1) = {" +aab +aab +aab +aab +hJx +hJx +hJx +ado +adm +adY +aeo +acH +aeL +adl +afT +adl +agO +ahs +bub +ais +hJx +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aMf +aMU +aNs +aNS +aOB +aPg +aPY +aMf +aab +aab +aRA +aSh +aSD +aSE +aTA +btb +aRA +aab +aab +aVk +aVG +aVG +aWA +aWV +aWV +aWV +aWV +aYf +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asY +atd +atd +atd +izl +atd +aut +atd +izl +izl +atr +izl +izl +izl +asR +avY +aws +awp +awp +axo +avY +ayb +axH +axH +axH +axH +axH +axH +axH +awp +awp +axH +axt +avY +aab +aDz +aDR +aEe +aEr +aEr +aEr +aEr +aEr +aEr +aFY +aGq +aab +aEE +aGd +aHh +aHq +aGd +aHF +aHV +aGd +aIw +aIG +aIG +aIG +aIG +aCz +aII +aIx +aIx +aIx +aIx +aKC +aIx +aIx +aIx +aLA +aLA +aLA +aLA +aLA +aLA +aIx +aIx +aIx +aIx +aOZ +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(39,1,1) = {" +aab +aab +aab +aab +abx +sHB +uZF +hJx +adK +hJx +hJx +hJx +aeM +hJx +hJx +ags +hJx +hJx +hJx +hJx +hJx +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aMf +aMV +aMC +aNT +aOC +aNU +aPY +aOw +aab +aRA +aRA +aSh +aSE +aSE +aSE +aTQ +aRA +aRA +aab +aab +aab +avD +aWz +avD +aab +aab +avD +avD +aab +aLF +aab +aab +aab +aab +asP +asR +izl +asZ +atd +atd +atE +izl +aul +auu +auG +izl +ava +atd +atq +avK +izl +asR +avY +awt +awp +awp +axp +avY +ayb +axH +axH +axH +axH +axH +axH +axH +awp +awp +axH +aCq +avY +aab +aDz +aDR +aEf +aEs +aEC +aEr +aEr +aFz +aFL +uFd +uFd +aab +aEE +aGd +aHi +aHr +aGd +aHG +aHW +aGd +aIw +aIG +aIG +aIG +aIG +aCz +aII +aII +aIx +aKl +aKp +aKp +aKp +aLj +aLq +aLB +aLB +aLB +aLB +aLB +aLB +aLq +aLj +aNL +aNL +aNL +aPH +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(40,1,1) = {" +aab +aab +aab +aab +aby +sHB +tGX +ffh +ffh +hJx +aab +aeD +aeD +aeD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aMf +aMV +aMC +aNT +aOD +aPh +aPZ +aOw +aab +aRB +aRA +aSh +aSE +aTg +aTB +aTR +aRA +aRB +aab +aab +aab +aWf +aWB +aab +aab +avD +avD +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asS +asZ +atd +atd +atE +asS +aum +aum +aum +asS +avb +atd +atd +avL +asS +asR +avY +awt +awp +awp +axp +avY +aya +axH +awY +axH +awY +aAr +aAG +aBe +awp +awp +aBZ +aCp +avY +aab +aDA +aDQ +uFd +uFd +uFd +aEW +aEW +uFd +uFd +uFd +aab +aab +aEE +aGd +aHj +aHj +aGd +aHj +aHj +aGd +aIw +aIG +aIG +aIG +aIG +aCz +aII +aII +aIx +aKm +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aNL +aPH +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(41,1,1) = {" +aab +aab +aab +aab +abz +sHB +eGq +ffh +uZF +hJx +aab +aeD +aeD +aeD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aMf +aMW +aMC +aNU +aNU +aNU +aQa +aOw +aab +aRC +aRA +aRA +aSF +aTh +aTC +aRA +aRA +aUv +aab +avD +avD +avD +aWC +aab +avD +avD +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asS +asS +asS +atr +asS +asS +asR +asR +asR +asS +avc +atd +avt +asS +asS +asR +avZ +avZ +avZ +avZ +avZ +avZ +ayc +ayc +ayU +avY +azT +avY +ayc +aBf +ayU +ayU +aBf +ayc +avY +avY +avY +ayc +ayc +ayc +avY +aEX +aEX +avY +avY +aab +aab +aab +aEE +aHb +aGd +aGd +aHc +aGd +aGd +aGd +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aII +aIx +aKn +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aNL +aPH +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(42,1,1) = {" +aab +aab +aab +aab +hJx +hJx +hJx +hJx +hJx +aab +aab +aeD +aeD +aeD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aMf +aMX +aNt +aNU +aNU +aPi +aQb +aOw +aab +aab +aRU +aSj +aSG +aTi +aTD +aTT +aRU +aab +aab +avD +aMf +czt +aWD +czt +aMf +aLW +aab +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asS +asS +atg +atd +atd +asS +asR +asR +asR +asS +avd +atd +avu +asS +asS +asR +avZ +awv +awN +axb +axq +avZ +ayd +axH +axH +ayc +azU +ayc +aAH +aAI +awp +awp +axH +aCr +aCP +aDk +avY +axH +axH +axH +axH +awp +awp +aBc +avY +aab +aab +aab +aEE +aGd +aHg +aHg +aGd +aHg +aHg +aGd +aIx +aIH +aII +aIy +aJj +aJs +aIx +aII +aIx +aKm +aKv +aKD +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPI +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(43,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aeD +aeD +aeD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aMf +aMf +aMf +aMf +aMf +aNV +aNU +aPi +aQc +aOw +aab +aab +aRU +aSj +aSH +aTj +aTE +aTU +aRU +aab +aUO +aMf +aMf +aWg +aWE +aWW +aMf +aLW +aLW +aab +aab +aLF +aab +aab +aab +aab +asP +asR +asR +asS +asS +atd +bBb +asS +asR +asR +asR +asS +ave +atd +asS +asS +asR +asR +avZ +awv +awv +axc +axr +avZ +aye +axH +axH +ayc +azU +ayc +aAI +axH +awp +awp +awp +awp +awp +awp +aDB +awp +awp +awp +awp +awp +awp +aBc +avY +aab +aab +aab +aEE +aGd +aHk +aHs +aGd +aHH +aHX +aGd +aIx +aII +aIR +aII +aII +aJt +aJL +aII +aIx +aKo +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPJ +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(44,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aMf +aMs +aMB +lLj +aMf +aNW +aNU +aPj +aQd +aOw +aRm +aab +aRA +aSj +aSH +aTk +aTF +aSk +aRA +aab +avD +czt +aVH +aWh +aWF +aWX +aMf +aMf +aLW +aLW +aLG +aLF +aab +aab +aab +aab +asP +asR +asR +asS +asS +ats +atG +asS +asR +asR +asR +asS +avf +ats +asS +asS +asR +asR +avZ +awv +awO +axd +axs +avZ +ayf +axH +axH +azs +azU +azs +axH +axH +awp +awp +awp +awp +awp +awp +aDB +awp +awp +awp +awp +awp +awp +aFA +avY +aab +aab +aab +aEE +aGd +aHl +aHt +aGd +aHk +aHY +aGd +aIy +aIy +aIS +aIy +aII +aJt +aIx +aII +aIx +aKp +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPK +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(45,1,1) = {" +aab +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aMf +aMt +aMC +aMC +aNu +aNU +aOE +aPk +aQe +aMf +aab +aab +aRA +aSj +aSH +aTk +aTE +aTT +aRA +avD +avD +czt +aVI +aWi +aWG +aWY +aXq +aMf +aMf +aLW +aLG +aLG +aab +aab +aab +aab +asP +asR +asR +asR +asS +asS +asS +asS +asR +asR +asR +asS +asS +asS +asS +asR +asR +asR +avZ +awv +awv +awv +awv +avZ +axH +axH +aye +ayc +azU +ayc +aAJ +axH +aBA +aBA +aBA +aBA +aBA +aBA +avY +axH +axH +axH +aED +aED +aED +aED +aEE +aab +aab +aab +aEE +aGd +aHj +aHj +aGd +aHj +aHj +aGd +aIy +aII +aII +aII +aII +aJt +aIx +aIx +aIx +aKp +aKp +aKp +aKp +aLj +aLr +aLr +aLr +aLT +aMd +aMp +aLr +aLr +aNl +aNN +aNL +aNL +aPL +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(46,1,1) = {" +aab +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aMf +aMu +aMD +aMY +aMf +aNU +pEp +pEp +aQf +aMf +aRn +aab +aRA +aSk +aSI +aTk +aTE +aTU +aRA +aRn +czt +czt +aVJ +aVw +aWH +aWZ +aXr +aXH +aMf +aLW +aLG +aLG +aab +aab +aab +aab +asP +asR +asR +asR +asR +asR +asR +atX +asR +asR +asR +asR +asR +asR +asR +asR +asR +asR +avZ +awv +awP +awv +awv +avZ +axH +axH +aye +ayc +azU +ayc +aAK +axH +aBB +aBB +aBB +aBB +aBB +aBB +avY +axH +axH +axH +aED +aED +aED +aED +aEE +aab +aab +aab +aEE +aGd +aGd +aGd +aGd +aGd +aGd +aGd +aIz +aII +aII +aII +aII +aII +aII +aII +aKd +aKp +aKp +aKp +aKp +aLj +aLr +aLr +aLr +aLU +aMe +aMq +aMA +aMA +aNm +aNO +aOt +aNL +mXz +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(47,1,1) = {" +aab +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aMf +aMf +aMf +aMf +aMf +aNU +aOF +aPc +aQg +aQJ +aOw +aab +aRA +aSl +aSH +aTj +aTF +aSk +aRA +aMf +aUP +aVl +aVK +aPc +aWI +aXa +aXs +aXI +aMf +aLW +aLG +aLG +aab +aab +aab +aab +asP +asP +asP +asP +ath +ath +ath +ath +aun +aun +ath +ath +ath +ath +ath +ath +ath +ath +avZ +aww +awQ +aww +avZ +avZ +axH +axH +avY +avY +azV +avY +avY +ayU +ayc +ayc +avY +avY +avY +avY +avY +azt +ayU +avY +aEE +aED +aFo +aED +aEE +aab +aab +aab +aEE +aGd +aGd +aGd +aGd +aGd +aGd +aGd +aIy +aII +aII +aII +aII +aJu +aIx +aIx +aIx +aKp +aKp +aKp +aKp +aLj +aLr +aLr +aLr +aLT +aMd +aMr +aLr +aLr +aNl +aNL +aOu +aNL +mXz +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(48,1,1) = {" +aab +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rpk +atb +atb +atb +atb +atb +atb +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMf +aME +aMZ +aMf +aNX +aMf +aPl +aPc +aQK +aOw +aab +aRA +aSm +aSH +aTj +aTE +aTT +aRA +aMf +aUQ +aVm +aVL +aPc +aWJ +aXb +aXt +aXJ +aMf +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +ath +att +atH +ath +aub +aub +ath +att +atH +ath +avh +avM +ath +avU +avU +awx +awR +awx +axt +axH +axH +axH +avY +axH +azU +axH +avY +axH +axH +aBK +avY +aCs +aCs +aCs +aDC +aCs +aCs +aCs +aEE +aEY +aFp +aEY +aEE +aEE +aEE +aEE +aEE +aGd +aGd +aHu +aHy +aHI +aHJ +aHJ +aIy +aIy +aIS +aIy +aII +aJu +aIx +aII +aIx +aKp +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPN +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(49,1,1) = {" +aab +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aab +rpk +atb +atj +atA +atb +atj +atA +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMf +aMF +aNa +aNv +aNa +aMf +aPm +aPc +aQK +aOw +aab +aRA +aSn +aSJ +aTl +aTE +aTX +aRA +aMf +aUR +aVn +aVM +aWj +aWK +aXc +aXu +aXK +aMf +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +ath +atu +atu +ath +aub +aub +ath +atu +atu +ath +auU +auU +avm +avU +avU +awx +awR +awx +axt +axH +axH +axH +avY +axH +azU +axH +avY +azq +axH +aBL +avY +aCt +aCQ +aCu +aCs +aDS +aDS +aDS +aEF +aEZ +aED +aFB +aEE +aGa +aGr +aGB +aGO +aGd +aGd +aHu +aHy +aHJ +aHJ +aHJ +aIx +aII +aIT +aII +aII +aJu +aJL +aII +aIx +aKo +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPO +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(50,1,1) = {" +aab +aab +aab +rpk +rpk +rpk +rpk +rpk +iqj +iqj +rpk +rpk +rpk +rpk +atb +atk +atm +atb +atk +atk +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMf +aMG +aNb +aNw +aNY +aMf +aPn +aPc +aQK +aOw +aab +aRA +aRA +ikd +aTm +ikd +aRA +aRA +aMf +aUS +aVo +aVN +aWk +aWL +aXd +aXv +aXL +aMf +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +ath +atv +atu +ath +aub +aub +ath +atv +atu +ath +avv +auU +avm +avU +avU +awx +awR +awx +axt +axH +ayg +ayq +avY +axH +azU +axH +avY +aBg +aBC +aBM +avY +aCu +aCQ +aCu +aCs +aCs +aCs +aCs +aEF +aFa +aED +aFC +aEE +aGb +aGs +aGC +aGP +aGd +aGd +aHu +aHy +aHJ +aHJ +aIh +aIx +aIH +aII +aIy +aJk +aJv +aIx +aII +aIx +aKp +aKv +aKD +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPP +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(51,1,1) = {" +aab +aab +aab +rpk +qTC +rpk +uvD +kEf +kEf +kEf +kEf +kEf +kEf +rpk +atb +atb +atb +atb +atb +aus +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMf +aMf +aMf +aMf +aMf +aMf +aPo +aQh +aQK +aOw +aOw +aab +aRA +psv +aTn +aSK +aRA +aMf +aMf +aMf +aVp +aMf +aWl +aWM +aXe +aXe +aMf +aMf +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +ath +ath +atI +ath +aua +aua +ath +ath +atI +ath +ath +auU +ath +avU +awa +awx +awS +awx +avY +avY +avY +avY +avY +azt +azV +aAs +avY +avY +avY +avY +avY +aCs +aCs +aCs +aCs +aDS +aDS +aDS +aEE +aEE +aEE +aEE +aEE +aGc +aGt +aGD +aGP +aGd +aGd +aHu +aHy +aHJ +aHJ +aIi +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aII +aIx +aKo +aKv +aKp +aKv +aLj +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLr +aLj +aNM +aNL +aPa +aPQ +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(52,1,1) = {" +aab +aab +aab +rpk +baD +rpk +myy +kEf +kEf +kEf +kEf +kEf +kEf +rpk +atb +atj +atA +atb +atj +atA +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aMf +aNx +aNZ +aMf +aMf +aQi +aQK +aPc +aOw +aab +aRA +aSL +aTo +aTH +aTY +aUh +aUw +pEp +aQK +aMf +aMf +aMf +aMf +aMf +aMf +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +atJ +atJ +atO +atO +atO +atO +atO +ath +bMb +avx +ath +avU +awa +awy +awT +awT +axu +axI +awG +awG +awG +awG +awG +awG +awG +awG +awG +awG +awa +aCv +aCv +aCv +aDD +aCv +aCv +aCv +aEE +aFb +aFb +aFb +aEE +aGd +aGd +aGd +aGd +aHc +aGd +aHu +aHy +aHJ +aHJ +aIj +aCz +aCz +aIU +aHM +aJl +aJw +aIx +aII +aIx +aKp +aKw +aKE +aLf +aLk +aLs +aLs +aLs +aLs +aLs +aLs +aLs +aLs +aLk +aNP +aOv +aPa +aPR +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(53,1,1) = {" +aab +aab +aab +rpk +rpk +rpk +cjX +cjX +cjX +kEf +cjX +cjX +cjX +rpk +atb +atl +atk +atb +atk +atk +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aMf +bOb +aOa +aOG +aPp +aQj +aQL +aRo +aOw +aab +aRA +aRA +aRA +aRA +aRA +aMf +aUx +pEp +aUA +aMf +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +atK +atO +atO +atO +atO +atO +atO +ath +avx +avx +ath +avU +awa +awz +awG +awG +axv +axJ +awG +axK +awG +awG +awG +awG +awG +awG +axK +awG +axJ +bwb +aCR +aCR +aCR +aCR +aCR +aEt +aEE +aFb +aFb +aFb +aEE +aGd +aGd +aGd +aGd +aGd +aGd +aHu +aHy +aHJ +aHJ +aIk +aCz +aCz +aIV +aHM +aHM +aHM +aIx +aII +aIx +aKq +aKx +aKp +aKp +aLj +aLq +aLC +aLC +aLC +aLC +aLC +aLC +aLq +aLj +aNL +aNL +aNL +aPS +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(54,1,1) = {" +aab +aab +aab +aab +aab +rpk +kEf +kEf +kEf +kEf +kEf +kEf +kEf +rpk +atb +atb +atb +atb +atb +atb +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aMH +aNc +bPb +aOb +aOH +aMf +aQk +aQK +aRp +aOw +aOw +aRn +aMf +aMf +aMf +aRn +aMf +aUy +aMf +aQK +aMf +aMf +aLW +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +atL +atL +atO +atO +atL +atL +atO +avl +avx +avx +avm +avU +awa +awA +awG +awG +axw +awx +ayh +ayr +ayr +azu +azW +aAt +ayr +ayr +ayr +aBN +aCa +aCx +aCx +aCx +aCx +aCx +aCx +aEu +aEE +aEE +aEE +aEE +aEE +aCz +aGu +aGu +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aIW +aHM +aJm +aJx +aIx +aII +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aLA +aLA +aLA +aLA +aLA +aLA +aIx +aIx +aIx +aIx +aOZ +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(55,1,1) = {" +aab +aab +aab +aab +aab +rpk +rpk +rpk +rpk +nQJ +rpk +rpk +rpk +rpk +atb +atj +atA +atb +aue +atA +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMg +aMI +aMf +aNA +aMf +aOI +aMf +aQl +aQM +aRq +aRD +aPd +aPd +aPd +aPd +aPd +aTZ +aPd +aUz +aUT +aVq +aVO +aMf +aLW +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +atM +atY +atO +atO +atY +atY +atO +ath +avx +avx +avm +avU +awa +awB +awG +awG +axx +awx +ayi +awx +awx +awx +azX +awx +awx +awa +awa +awC +aCb +aCy +aCy +aCy +aCy +aDT +aDT +aEv +aCz +aFc +aFc +aFc +aFc +aDE +aCx +aCx +aDE +aFc +aFc +aFc +aCz +aHK +aHZ +aHM +aIA +aCz +aIX +aHM +aHM +aJy +aIx +aII +aII +aII +aII +aII +aIx +aLl +aLp +aLD +aLD +aLD +aLD +aLD +aLD +aMT +aNn +aIx +aII +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(56,1,1) = {" +aab +aab +aab +aab +aab +rpk +szh +kEf +szh +kEf +szh +kEf +szh +rpk +atb +atm +atk +atb +atk +atk +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMg +aMg +aMf +aNB +aMf +aOJ +aMf +aQm +aQN +aPc +aRE +aPc +aSo +aSO +aSO +aSO +aUa +aPc +aUA +aUU +aVr +aMf +aMf +aLW +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +atw +atN +atZ +atO +atO +atN +auT +atO +ath +avy +avN +avm +avU +awa +aae +awG +awG +axy +awx +ayi +awx +ayV +aZb +awG +aAu +aAL +awa +awa +awC +awa +aCz +aCz +aCz +aCz +aDD +aDD +aCz +aCz +aDE +aDE +aDE +aDE +aDE +aGf +aGf +aDE +aDE +aDE +aDE +aCz +aHK +aIa +aHM +aHM +aCz +aIY +aHM +aJn +aJz +aIx +aIx +aIx +aIx +aIx +aII +aIx +aLl +aLp +aLD +aLK +aLD +aLD +aLK +aLD +aMT +aNn +aIx +aII +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(57,1,1) = {" +aab +aab +aab +aab +aab +rpk +kEf +kEf +kEf +kEf +kEf +kEf +kEf +rpk +atb +atb +atb +atb +atb +atb +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMg +aMJ +aMf +aNC +aNC +aNC +aNC +aNC +aQO +aRr +aRE +aPc +aMf +aSP +aTp +aSP +aMf +aUi +aUB +aUV +aVs +aMf +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +atw +atL +atL +atO +atO +atL +atL +atO +ath +ath +ath +ath +ath +ath +ath +ath +ath +awa +awa +ayi +awx +awG +azw +awG +azw +awG +aBh +awx +awC +awG +awa +aCS +aDl +aDE +aCx +aCx +aDE +aEG +aFd +aFd +aFd +aFd +aGe +aCx +aCx +aGQ +aHd +aHm +aHv +aCz +aHK +aIa +aHM +aHM +aCz +aCz +aJg +aCz +aCz +aCz +aab +aab +aab +aIx +aII +aIx +aLl +aLp +aLD +aLD +aLV +aLD +aLD +aLD +aMT +aNn +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(58,1,1) = {" +aab +aab +aab +aab +aab +rpk +kEf +kEf +kEf +kEf +kEf +kEf +kEf +rpk +atb +atj +atA +atb +atj +atA +atb +aab +aab +aab +aab +aab +aab +aLW +aMg +aMg +aMK +aMg +aNC +aOc +aOc +aOc +aNC +aNC +aMf +aRF +aRX +aMf +aSQ +aTq +aTI +aMf +aUj +aUC +aMf +aMf +aMf +aMf +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +atw +atO +atO +atO +atO +atO +atO +atO +atO +atO +atO +atO +ath +awb +awb +awb +axe +axz +awG +ayi +awx +ayW +azx +azY +awG +aAM +aBj +awx +awC +awG +axJ +aCT +aCx +aDF +aCx +aCx +aEw +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aHw +aHz +aHL +aIb +aHM +aIl +aIJ +aHM +aHM +aHM +aJA +aCz +aab +aab +aab +aIx +aII +aIx +aLl +aLp +aLD +aLK +aLD +aLD +aLK +aLD +aMT +aNn +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(59,1,1) = {" +aab +aab +aab +aab +aab +rpk +kEf +kEf +kEf +etB +kEf +kEf +kEf +rpk +atb +atk +atk +atb +atm +atk +atb +aab +aab +aab +aab +aab +aab +aLW +aMh +aMg +aMg +aMg +aNC +aOd +aOK +aPq +bsb +aNC +aRs +aRG +aRY +aSp +aSR +aTr +aTJ +aUb +aRY +aUD +aUW +aVt +aVP +aWm +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +atw +atP +atO +atO +atJ +auI +atJ +atO +atO +atO +atO +atO +avV +awc +awc +awc +avV +axz +axK +ayi +awx +ayX +azy +axz +awG +awG +awG +awx +awC +axK +aCA +aCU +aCx +aDE +aDU +aEg +byb +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aGR +aCx +aCx +aCx +aHA +aHM +aHM +aIl +aIB +aIK +aIJ +aHM +aHM +aJB +aCz +aab +aab +aab +aIx +aII +aIx +aLl +aLp +aLD +aLD +aLD +aLD +aLD +aLD +aMT +aNn +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(60,1,1) = {" +aab +aab +aab +aab +aab +rpk +rpk +rpk +rpk +rpk +rpk +rpk +rpk +rpk +atb +atb +atb +atb +atb +atb +atb +aab +aab +aab +aab +aab +aab +aLW +aLW +aMh +aMg +aLW +aNC +aOe +aOL +aPq +aQo +aNC +aRt +aRH +aPc +aPc +aSS +aTq +aTK +aPc +aPc +aRH +aPc +aVu +aVu +aPc +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +atQ +atO +atO +atJ +auJ +atJ +atO +atO +atO +atO +atO +ath +awb +awb +awb +axf +axz +awG +ayi +awx +ayY +azz +azZ +aAv +aAM +aBj +awx +awC +awG +aCb +aCV +aCx +aDG +aCx +aEh +aEy +aEH +aFe +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aCx +aHA +aHM +aHM +aIm +aIC +aIL +aIM +aHM +aHM +aHO +aCz +aab +aab +aab +aIx +aII +aIx +aIx +aIx +aLy +aLy +aLy +aLy +aLy +aLy +aIx +aIx +aIx +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(61,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aNC +aOf +aOf +aPq +aQp +aNC +aRu +aQN +aPc +aSq +aMf +aTq +aMf +aUc +aPc +aQN +aUX +aVv +aVQ +aWn +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +ath +aua +aua +ath +ath +ath +ath +avm +atO +avm +ath +ath +ath +ath +ath +ath +awa +awa +ayi +awx +awG +azA +awG +azA +aAN +aAL +awx +awC +awG +awa +aCW +aDm +aDE +aDV +bxb +aDE +aDm +aDm +aDm +aFD +aFM +aCx +aCx +aGE +aFD +aFM +aCx +aCx +aCz +aHN +aHM +aHM +aIm +aIM +aIZ +aHM +aHM +aJC +aCz +aab +aab +aab +aIx +aII +aII +aII +aIx +aLE +aLE +aLE +aLE +aLE +aII +aMS +aII +aII +aII +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(62,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aNC +aOg +aOM +aPq +aPq +aQP +aPc +aPc +aPc +aPc +aST +aTs +aMf +aUd +aPc +aPc +aUY +aVv +aVR +aWo +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auK +auU +auU +auU +auU +avO +avm +avU +awa +awD +awG +awG +awG +awx +ayi +awx +ayV +azB +awG +bvb +aAO +awa +awa +awC +awa +awa +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aDE +aDE +aDE +aDE +aGf +aGf +aDE +aDE +aDE +aGf +aGf +aCz +aHO +aHO +aHM +aHM +aHM +aHM +aHM +aHM +aJD +aCz +aab +aab +aab +aIx +aIx +aIx +aII +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aNo +aIx +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(63,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aNC +aOh +aON +aON +aNC +aNC +aPc +aPc +aPc +aPc +aSU +aTs +aMf +aUe +aUk +aUE +aPc +aVw +aVw +aWi +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auL +auU +avg +avn +auU +auU +avm +avU +awa +awE +awG +awG +awG +awx +ayi +awx +awx +awx +azX +awx +awx +awa +awa +awC +awa +aab +aab +aab +aab +aab +aab +aab +aCz +aFc +aFc +aFc +aDE +aCx +aCx +aDE +aFc +aDE +aCx +aCx +aCz +aHO +aHO +aIn +aID +aID +aHM +aHM +aJo +aJE +aCz +aab +aab +aab +aab +aab +aIx +aJk +aJk +aJk +aJk +aJk +aJk +aJk +aJk +aJk +aJv +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(64,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aNC +aNC +aNC +aNC +aNC +aMf +aRv +aRI +aRZ +aSr +aMf +aTq +aTL +aUf +aUl +aUF +aUZ +aVx +aVS +aWp +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auL +auU +avh +avn +auU +auU +avm +avU +awa +awF +awG +awG +awG +awx +ayj +awT +awT +azC +aAa +aAx +awT +awT +awT +aBO +awa +aab +aab +aab +aab +aab +aab +aab +aCz +aCz +aCz +aFc +aDE +aCx +aCx +aDE +aGS +aDE +aCx +aCx +aCz +aCz +aCz +aCz +aCz +aCz +aJa +aJa +aJa +aCz +aCz +aab +aab +aab +aab +aab +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aIx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(65,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aMf +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auM +auU +avh +auU +auU +auU +avm +avU +awa +awG +awG +awG +awG +axJ +awG +axK +awG +awG +awG +awG +awG +awG +axK +awG +awa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aFc +aDE +aGg +aCx +aCx +aCx +aCx +aCx +aCx +aDE +aFc +aCz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(66,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLW +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +ath +ath +ath +auU +avz +avP +avm +avU +awa +awG +awG +awG +awG +axL +awG +awG +awG +awG +awG +awG +awG +awG +awG +awG +awa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aFc +aDE +aCx +aCx +aGF +aGT +aHe +aCx +aCx +aDE +aFc +aCz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(67,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aLG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auN +auV +ath +auU +auU +auU +avm +avU +awa +awa +awa +awa +awa +awa +ayk +awU +awa +awa +awa +awa +axJ +awa +awa +awa +awa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aFc +aDE +aCx +aCx +aGG +axK +aCU +aCx +aCx +aDE +aFc +aCz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(68,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auO +auO +avi +auU +auU +auU +avm +avU +awa +aab +aab +awU +axA +axA +axA +ays +awU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aCz +aCz +aCx +aCx +aCz +aCz +aCz +aCx +aCx +aCz +aCz +aCz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(69,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ath +aub +aub +ath +auP +auW +ath +avh +avh +avQ +ath +ath +awa +aab +aab +awU +axB +axN +axA +ayt +awU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aFq +aFq +aDE +aCx +aCx +aCz +aFq +aCz +aCx +aCx +aDE +aFq +aFq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(70,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +ath +aua +aua +atx +atx +atx +atx +atx +atx +atx +atx +atx +aab +aab +aab +awU +axA +axA +axA +ayu +awU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aDE +aCx +aCx +aDE +aab +aDE +aCx +aCx +aDE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(71,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +atR +atR +atR +atR +atR +atR +atR +atR +atR +atR +atx +aab +aab +aab +awU +axA +axN +axA +ayv +awU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aCx +aCx +aDE +aab +aDE +aCx +aCx +aHB +pqa +pqa +iSJ +iSJ +pqa +iSJ +iSJ +pqa +pqa +iSJ +pqa +wyK +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(72,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +atR +auo +auw +auQ +auQ +auQ +auw +auo +atR +atR +atx +aab +aab +aab +awU +axC +axA +axA +axA +awU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aDE +aCx +aCx +aDE +aab +aDE +aCx +aCx +aDE +pqa +aId +aIp +aIp +aId +aIp +aIp +aId +pqa +aJN +aJX +pqa +pqa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(73,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +rxE +auo +auz +auz +auz +auz +auz +auo +auo +atR +atx +aab +aab +aab +awU +awU +awU +awU +awU +awU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aFN +aCx +aCx +aDE +aab +aDE +aCx +aCx +aHC +aHR +aIe +aIe +aIe +aIe +aIe +aIe +aIe +lQU +aIe +aIe +aKg +pqa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(74,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +rxE +auq +auy +auz +auz +auz +jlA +auo +auo +atR +atx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aDE +aCx +aCx +aDE +aab +aDE +aCx +aCx +aDE +pqa +aIf +aIq +aIq +aIf +aIq +aIq +aIf +pqa +aJO +aJY +pqa +pqa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(75,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +rxE +auq +auz +auz +auX +auz +auz +avB +auo +atR +atx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aCx +aCx +aDE +aab +aDE +aCx +aCx +aHB +pqa +pqa +iSJ +iSJ +pqa +iSJ +iSJ +pqa +pqa +iSJ +pqa +wyK +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(76,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +rxE +auo +auz +auz +auz +auz +auz +auo +auo +atR +atx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aDE +aCx +aCx +aCz +aab +aCz +aHn +aCx +aDE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(77,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +atR +auo +auw +auQ +auQ +auQ +auw +auo +atR +atR +atx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aDE +aCx +aCx +aCz +aab +aCz +aHo +aCx +aDE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(78,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atR +atR +atR +atR +atR +atR +atR +atR +atR +atR +atR +atx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aCz +aDE +aDE +aCz +aab +aCz +aCz +aCz +aCz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(79,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +atx +atS +atS +atS +atS +atS +atS +atS +atS +atS +atS +atS +atx +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(80,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(81,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(82,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(83,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(84,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(85,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(86,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(87,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(88,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(89,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(90,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(91,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(92,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(93,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(94,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(95,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(96,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(97,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(98,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(99,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(100,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(101,1,1) = {" +aaa +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaa +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +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 +"} +(102,1,1) = {" +aac +bKU +wCv +ljS +wCv +bKU +wCv +ljS +ljS +cMe +mjR +aeE +wDD +tcf +wDD +wDD +rJY +wDD +wDD +wjw +uJE +wDD +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(103,1,1) = {" +aac +ljS +dBi +niJ +fJf +fJf +niJ +mrn +bKU +cMe +mjR +aeE +rIu +rIu +rIu +rIu +rIu +rIu +vQS +vOe +uIr +vQS +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(104,1,1) = {" +aac +ljS +btO +ufC +mjR +mjR +ufC +icO +ljS +cMe +mjR +aeE +rIb +rIu +uzq +jSi +lwD +rIu +rIu +qIk +qIk +rIu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(105,1,1) = {" +aac +wCv +cMe +cay +mjR +mjR +mjR +lWf +wda +cMe +mjR +aeE +sGJ +mmW +dIU +dIU +dIU +dIU +dIU +dIU +dIU +dIU +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aLL +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(106,1,1) = {" +aac +bKU +cMe +mjR +dzK +iIc +mjR +fpW +fJf +moq +mjR +aeE +rIu +rIu +dIU +dIU +pgJ +dIU +pgJ +dIU +dIU +pgJ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(107,1,1) = {" +aac +wCv +cMe +mjR +jxq +hzB +mjR +bnc +iBC +iBC +iBC +aeE +vgY +rIu +dIU +qir +tDw +tDw +tDw +tDw +tDw +qMl +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(108,1,1) = {" +aac +ljS +cMe +jXw +mjR +mjR +mjR +lWf +wCv +ljS +bKU +aeE +upH +gtn +dIU +pUt +gnX +gnX +gnX +gnX +gnX +dNG +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(109,1,1) = {" +aac +ljS +btO +ufC +mjR +mjR +ufC +icO +ljS +wCv +ljS +aeE +rIu +rIu +dIU +pUt +gnX +gnX +joZ +gnX +gnX +dNG +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(110,1,1) = {" +aac +ljS +tsJ +nJl +iBC +iBC +nJl +dnO +wCv +bKU +wCv +aeE +eRk +rIu +pgJ +pUt +gnX +gnX +gnX +gnX +gnX +dNG +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(111,1,1) = {" +aac +wCv +wda +ljS +ljS +wCv +bKU +ljS +ljS +wCv +ljS +aeE +iJF +lIX +dIU +pUt +gnX +gnX +gnX +gnX +gnX +dNG +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(112,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(113,1,1) = {" +aac +glo +glo +glo +glo +glo +glo +glo +glo +glo +glo +aeE +efq +efq +efq +efq +efq +efq +efq +efq +efq +efq +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(114,1,1) = {" +aac +dJV +skD +fcv +fcv +fcv +sWJ +skD +skD +skD +skD +aeE +jHQ +tQu +jHQ +mTy +efq +efq +cMP +thM +jHQ +jHQ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(115,1,1) = {" +aac +jed +rms +qoH +qoH +qoH +xHn +qoH +qoH +qoH +dMH +aeE +wCU +wCU +wCU +euY +rqJ +rqJ +euY +wCU +wCU +wCU +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(116,1,1) = {" +aac +jed +jgg +uJY +uJY +mRm +qZF +jps +uJY +kce +jvm +aeE +lRq +gse +cMQ +piR +vbR +vbR +piR +xqW +gse +oql +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(117,1,1) = {" +aac +jed +jgg +qRm +uJY +uJY +qZF +uJY +uJY +uJY +xXB +aeE +vbR +vbR +vbR +vbR +vbR +vbR +vbR +vbR +vbR +vbR +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(118,1,1) = {" +aac +jed +jgg +uJY +uJY +uJY +qZF +uJY +uJY +uJY +xXB +aeE +vbR +dCA +ezo +vbR +vbR +vbR +vbR +vbR +vbR +fxB +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(119,1,1) = {" +aac +jed +jgg +uJY +uJY +uJY +qZF +uJY +djm +qRm +xXB +aeE +vbR +vbR +dTZ +vbR +mSZ +ntZ +ntZ +kjW +vbR +jhl +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aLF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(120,1,1) = {" +aac +jed +kfk +kBT +xTh +kBT +dZC +kBT +kBT +kBT +occ +aeE +vbR +vbR +xTc +vbR +lSD +mlL +mlL +reF +vbR +jhl +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(121,1,1) = {" +aac +bRY +olJ +cqu +cqu +cqu +twU +cqu +cqu +cqu +olJ +aeE +vbR +vbR +dTZ +vbR +xqW +pAh +pAh +cMQ +vbR +bcS +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(122,1,1) = {" +aac +glo +glo +glo +glo +glo +glo +glo +glo +glo +glo +aeE +dCA +pWv +quq +vbR +vbR +vbR +vbR +vbR +vbR +vbR +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(123,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(124,1,1) = {" +aac +aar +aar +aar +aar +aar +aar +aar +aar +aar +aas +aeE +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(125,1,1) = {" +aac +aar +aar +aaQ +aar +aar +aar +aar +aar +aar +aar +aeE +aeN +aeN +aeN +afj +aeN +aeN +aeN +aeN +afj +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(126,1,1) = {" +aac +aar +aar +aar +aar +aas +aar +aar +aaQ +aar +aar +aeE +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(127,1,1) = {" +aac +aas +aar +aar +aar +aar +aar +aar +aar +aar +aar +aeE +aeN +afj +aeN +aeN +aeN +aeN +afj +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(128,1,1) = {" +aac +aar +aar +aar +aar +aar +aar +aar +aar +aar +aaQ +aeE +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(129,1,1) = {" +aac +aar +aar +aar +aas +aar +aar +aaQ +aar +aar +aar +aeE +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(130,1,1) = {" +aac +aar +aar +aar +aar +aas +aar +aar +aar +aar +aar +aeE +aeN +aeN +aeN +afj +aeN +aeN +aeN +aeN +afj +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(131,1,1) = {" +aac +aar +aar +aar +aar +aar +aar +aar +aar +aar +aar +aeE +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(132,1,1) = {" +aac +aar +aaQ +aar +aar +aar +aar +aar +aar +aar +aar +aeE +aeN +afj +aeN +aeN +aeN +aeN +afj +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(133,1,1) = {" +aac +aar +aar +aar +aar +aar +aar +aas +aar +aar +aaQ +aeE +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(134,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(135,1,1) = {" +aac +aau +aav +abg +abB +aaw +aaw +aav +aau +abh +abh +aeE +aeO +aeO +aeO +aeO +aeO +aeO +aeO +ait +aeO +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(136,1,1) = {" +aac +aav +aav +abg +aav +aau +aav +aax +aaw +abg +abh +aeE +aeO +afk +aeO +aeO +aeO +aeO +aeO +aeO +agQ +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(137,1,1) = {" +aac +aaw +aaR +aaR +aau +aav +aav +aaw +aau +aau +abh +aeE +aeO +aeO +aeO +agt +aeO +aeO +aeO +aeO +aeO +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(138,1,1) = {" +aac +aax +aaR +aav +abg +aaw +aaw +adp +abh +abh +aav +aeE +aeO +aeO +aeO +aeO +agQ +aeO +aeO +aeO +agt +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(139,1,1) = {" +aac +aaw +aav +aaw +aax +abh +abh +abh +aaw +aau +aaw +aeE +aeO +aeO +aeO +afU +aeO +aeO +afk +aeO +aeO +ait +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(140,1,1) = {" +aac +aav +aau +aau +abh +aaw +aau +aau +aaw +aav +aaw +aeE +aeO +aeO +aeO +aeO +aeO +aeO +aeO +ait +aeO +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(141,1,1) = {" +aac +aau +aav +abh +abh +aaw +aax +adq +aav +aaw +aau +aeE +aeO +afk +aeO +aeO +aeO +aeO +agt +aeO +agQ +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(142,1,1) = {" +aac +aaw +aaS +abh +abh +aav +aaw +aau +aaw +aau +aaw +aeE +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(143,1,1) = {" +aac +aax +aaw +aau +aav +abh +abh +aaw +aav +abg +abg +aeE +aeO +aeO +afU +aeO +agQ +aeO +aeO +aeO +agt +aeO +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(144,1,1) = {" +aac +aaw +aav +aaw +aax +aaw +acR +aaw +abg +abg +abg +aeE +aeO +aeO +aeO +aeO +aeO +aeO +afk +aeO +aeO +ait +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(145,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(146,1,1) = {" +aac +aay +aaT +aaT +abC +ach +ach +ach +ach +ach +aep +aeE +aeP +aeP +uly +oFc +agR +agR +agu +agu +agu +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(147,1,1) = {" +aac +aay +aaT +aaT +abC +ach +ach +ach +ach +ach +ach +aeE +aeP +aeP +uly +oFc +agS +aht +aht +aht +aiK +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(148,1,1) = {" +aac +aay +aaT +aaT +abC +aci +acS +acS +acS +adZ +ach +aeE +aeP +afl +afV +oFc +agT +ahu +ahu +ahu +aiL +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(149,1,1) = {" +aac +aay +aaT +aaT +abC +acj +acT +acT +acT +aea +ach +aeE +aeP +afm +afV +oFc +agT +ahu +ahu +ahu +aiL +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(150,1,1) = {" +aac +aay +aaT +aaT +abC +acj +acT +acT +acT +aea +ach +aeE +aeP +afm +afV +oFc +agT +ahu +ahu +ahu +aiL +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(151,1,1) = {" +aac +aay +aaT +aaT +abC +acj +acT +acT +acT +aea +ach +aeE +aeP +afm +afV +oFc +agT +ahu +ahu +ahu +aiL +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(152,1,1) = {" +aac +aay +aaT +aaT +abC +acj +acT +acT +acT +aea +ach +aeE +aeP +afn +afV +oFc +agT +ahu +ahu +ahu +aiL +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(153,1,1) = {" +aac +aay +aaT +aaT +abC +ack +acU +acU +acU +aeb +ach +aeE +aeP +aeP +uly +oFc +agU +ahv +ahv +aiu +aiM +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(154,1,1) = {" +aac +aay +aaT +aaT +abC +ach +ach +ach +ach +ach +ach +aeE +aeP +aeP +uly +oFc +agu +agu +agu +agu +agu +agu +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(155,1,1) = {" +aac +aay +aaT +aaT +abD +acl +acl +acl +acl +aec +aeq +aeE +aeQ +aeP +uly +tGT +agv +agv +agv +agv +agv +agv +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(156,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(157,1,1) = {" +aac +aaz +aaz +aaz +aaz +aaz +aaz +aaz +aaz +aaz +aaz +aeF +aeR +aeR +aeR +aeR +aeR +aeR +aeR +aeR +aeR +aeR +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(158,1,1) = {" +aac +aaA +aaU +abi +abi +abi +abi +abi +adN +abi +aaA +aeF +aeS +aeS +aeR +aeS +aeS +aeS +aeS +aeR +aeS +aeS +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(159,1,1) = {" +aac +aaB +aaV +aaV +abE +acm +acV +adr +adO +adr +aer +aeF +aeT +aeT +afW +aeT +aeT +aeT +aeT +aiv +aeT +aeT +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(160,1,1) = {" +aac +aaB +aaV +aaB +abF +acn +acW +ads +acX +ads +aes +aeF +aeU +afo +afo +afo +agV +ahw +ahX +ahX +ahX +aja +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(161,1,1) = {" +aac +aaB +aaV +abj +abG +acn +acX +acX +acX +ads +aes +aeF +aeV +afp +afp +afp +agW +ahx +afp +afp +afp +aiw +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(162,1,1) = {" +aac +aaB +aaV +aaB +abH +acn +acW +ads +acX +ads +aes +aeF +aeU +afo +aeV +afp +agW +ahx +afp +aiw +ahX +aja +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(163,1,1) = {" +aac +aaB +aaV +aaV +abI +aco +acY +adt +adP +adt +aet +aeF +aeW +afp +aeV +afp +agX +ahx +afp +aiw +afp +ajb +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(164,1,1) = {" +aac +aaB +aaV +abk +abJ +abJ +abJ +abJ +abJ +abJ +abJ +aeF +aeX +afq +aeV +afp +agW +ahx +afp +aiw +ahY +ajc +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(165,1,1) = {" +aac +aaB +aaV +abl +abK +acp +acp +acp +acp +aed +aaB +aeF +aeV +afp +afp +afp +agW +ahx +afp +afp +afp +aiw +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(166,1,1) = {" +aac +aaB +aaV +abm +abL +acq +acq +acq +acq +aee +aaB +aeF +aeX +afq +afq +afq +agY +ahy +ahY +ahY +ahY +ajc +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(167,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(168,1,1) = {" +aac +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aeF +aeY +aeY +aeY +aft +agb +ahz +afZ +afZ +afZ +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(169,1,1) = {" +aac +aaC +aaW +aaC +aaC +aaC +aaC +aaC +aaC +aaW +aaC +aeF +aeY +aeY +aeY +aeY +aeY +afs +afZ +aix +aiz +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(170,1,1) = {" +aac +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aeF +aeY +aeY +aeY +aeY +aeY +afs +afY +afZ +afZ +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(171,1,1) = {" +aac +aaC +aaC +aaC +aaW +aaC +aaC +aaW +aaC +aaC +aaC +aeF +aeY +afr +afX +agw +aeY +afs +ahZ +aiy +aiN +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(172,1,1) = {" +aac +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aeF +aeY +afs +afY +agx +aeY +afs +aia +afZ +afZ +aga +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(173,1,1) = {" +aac +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aeF +aeY +afs +afZ +agx +aeY +afs +aib +afZ +afZ +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(174,1,1) = {" +aac +aaC +aaC +aaC +aaW +aaC +aaC +aaW +aaC +aaC +aaC +aeF +aeY +afs +afZ +agx +aeY +afs +aic +afZ +aiO +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(175,1,1) = {" +aac +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aeF +aeY +afs +aga +agx +aeY +afs +afZ +aga +afZ +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(176,1,1) = {" +aac +aaC +aaW +aaC +aaC +aaC +aaC +aaC +aaC +aaW +aaC +aeF +aeY +aft +agb +agy +aeY +afs +afZ +aiz +afZ +afZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(177,1,1) = {" +aac +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aaC +aeF +aeY +afr +afX +afX +afX +ahA +afZ +afZ +afZ +aga +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(178,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(179,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +aeZ +aeZ +aeZ +aeZ +aeZ +aeZ +aeZ +aeZ +aeZ +aeZ +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(180,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afa +afa +aeZ +afa +afa +afa +afa +aeZ +afa +afa +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(181,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afb +afb +agc +afb +afb +afb +afb +aiA +afb +afb +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(182,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afc +afu +afu +afu +agZ +ahB +aid +aid +aid +ajd +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(183,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afd +afv +afv +afv +aha +ahC +afv +afv +afv +aje +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(184,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afd +afv +afv +afv +aha +ahC +afv +afv +afv +aje +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(185,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afd +afv +afv +afv +aha +ahC +afv +afv +afv +aje +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(186,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afd +afv +afv +afv +aha +ahC +afv +afv +afv +aje +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(187,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afd +afv +afv +afv +aha +ahC +afv +afv +afv +aje +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(188,1,1) = {" +aac +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aaD +aeF +afe +afw +afw +afw +ahb +ahD +aie +aie +aie +ajf +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(189,1,1) = {" +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +aaa +aat +aat +aat +aat +aat +aat +aat +aat +aat +aat +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 +"} +(190,1,1) = {" +aac +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aeF +aff +afg +afg +afg +afg +afg +afg +afg +afg +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(191,1,1) = {" +aac +aaF +aaF +aaE +aaF +aaF +aaF +aaF +aaE +aaF +aaF +aeF +aff +afg +afg +afx +afx +afx +afx +afg +afg +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(192,1,1) = {" +aac +aaG +aaG +abn +aaG +aaG +aaG +aaG +adQ +aaG +aaG +aeF +afg +afg +afg +agz +agz +agz +agz +afg +afg +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(193,1,1) = {" +aac +aaH +aaX +aaX +aaX +aaX +acZ +acZ +acZ +acZ +aeu +aeF +afg +afg +agd +agA +ahc +ahc +agC +aiB +afx +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(194,1,1) = {" +aac +aaI +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aev +aeF +afg +afx +age +agB +ahd +ahE +aif +aiB +afx +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(195,1,1) = {" +aac +aaI +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aev +aeF +afg +afx +age +agB +ahe +ahF +aif +aiB +afx +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(196,1,1) = {" +aac +aaI +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aev +aeF +afg +afx +age +agC +ahf +ahf +aig +aiC +afg +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(197,1,1) = {" +aac +aaI +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aev +aeF +afg +afg +afg +agD +agD +agD +agD +afg +afg +afg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(198,1,1) = {" +aac +aaI +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aev +aeF +tff +bGb +afg +afx +afx +afx +afx +afg +afg +ajg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(199,1,1) = {" +aac +aaJ +aaZ +aaZ +aaZ +aaZ +ada +ada +ada +ada +aew +aeF +afg +bHb +afg +afg +afg +afg +afg +afg +afg +ajg +ajo +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(200,1,1) = {" +aaa +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaa +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaK +aaK +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 +"} diff --git a/maps/exodus/exodus-1.dmm b/maps/exodus/exodus-1.dmm new file mode 100644 index 00000000000..72cc106973c --- /dev/null +++ b/maps/exodus/exodus-1.dmm @@ -0,0 +1,72297 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"ac" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"ad" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/fore) +"ae" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"af" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/structure/sign/warning/vacuum{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ag" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/fore) +"ah" = ( +/turf/space, +/area/exodus/maintenance/sub/fore) +"ai" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "sub_sec_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_sec_inner" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"al" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "sub_sec_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "sub_sec_airlock"; + pixel_y = -25; + tag_airpump = "sub_sec_pump"; + tag_chamber_sensor = "sub_sec_sensor"; + tag_exterior_door = "sub_sec_outer"; + tag_interior_door = "sub_sec_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "sub_sec_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"am" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"an" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_sec_outer" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"ao" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "sub_sec_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/fore) +"ap" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/fore) +"aq" = ( +/obj/machinery/camera/network/maintenance{ + c_tag = "Security Elevator"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ar" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"as" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"at" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"au" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"av" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ax" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"ay" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"az" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aA" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aB" = ( +/obj/turbolift_map_holder/exodus/sec, +/turf/space, +/area/exodus/maintenance/sub/fore) +"aC" = ( +/obj/structure/sign/directions/security{ + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/fore) +"aD" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aG" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aJ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light, +/obj/effect/floor_decal/corner/orange{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "pho_in"; + name = "toxins control console"; + output_tag = "pho_out"; + sensor_name = "Phoron Supply"; + sensor_tag = "pho_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"aM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + input_tag = "air_in"; + name = "air mix control console"; + output_tag = "air_out"; + sensor_name = "mix supply"; + sensor_tag = "air_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"aP" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"aQ" = ( +/turf/simulated/floor/airless, +/area/space) +"aR" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aS" = ( +/obj/random/toolbox, +/turf/simulated/floor/airless, +/area/space) +"aT" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aU" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aV" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aW" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aY" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"aZ" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ba" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bc" = ( +/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/plating, +/area/exodus/maintenance/sub/fore) +"bd" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/port) +"be" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bf" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bg" = ( +/obj/item/stack/tile/wood, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bh" = ( +/obj/item/stool/padded, +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/carpet, +/area/exodus/maintenance/sub/port) +"bi" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bj" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bk" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bl" = ( +/obj/structure/table/gamblingtable, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bm" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/sub/port) +"bn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bo" = ( +/obj/structure/table/gamblingtable, +/obj/random/coin, +/turf/simulated/floor/wood, +/area/exodus/maintenance/sub/port) +"bp" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"br" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bs" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/sub/port) +"bt" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bu" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bv" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "pho_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/exodus/engineering/atmos) +"bw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bx" = ( +/obj/random/obstruction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"by" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bz" = ( +/obj/structure/bookcase, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bA" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"bB" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/port) +"bC" = ( +/obj/machinery/air_sensor{ + id_tag = "pho_sensor" + }, +/turf/simulated/floor/reinforced/phoron, +/area/exodus/engineering/atmos) +"bD" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bE" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"bG" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bI" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "pho_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/phoron, +/area/exodus/engineering/atmos) +"bJ" = ( +/turf/simulated/floor/reinforced/phoron, +/area/exodus/engineering/atmos) +"bK" = ( +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"bL" = ( +/obj/machinery/light/small, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Phoron"; + dir = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/exodus/engineering/atmos) +"bM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bN" = ( +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"bO" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bP" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bQ" = ( +/obj/effect/wallframe_spawn, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bR" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"bS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bW" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"bX" = ( +/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/plating, +/area/exodus/maintenance/sub/port) +"bY" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"bZ" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"ca" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cb" = ( +/obj/structure/table/standard, +/obj/item/clothing/head/hardhat, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"cc" = ( +/obj/structure/table/standard, +/obj/item/pen/red, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"cd" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ce" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"cf" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cg" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"ch" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/starboard) +"ci" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"cj" = ( +/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/plating, +/area/exodus/maintenance/sub/fore) +"ck" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"cl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"cm" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"co" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cp" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cq" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cs" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ct" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/starboard) +"cu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cv" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/central) +"cw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cx" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"cz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cA" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"cD" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/starboard) +"cE" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cF" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cG" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cJ" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"cN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cQ" = ( +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/reinforced/phoron, +/area/exodus/engineering/atmos) +"cR" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/central) +"cT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cV" = ( +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"cW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"cY" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"cZ" = ( +/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/plating, +/area/exodus/maintenance/sub/central) +"da" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"db" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dd" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"de" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"df" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"di" = ( +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/command) +"dj" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/command) +"dk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dm" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dn" = ( +/obj/machinery/camera/motion/command{ + c_tag = "Bridge - Sublevel - Fore"; + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/command) +"do" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dp" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dq" = ( +/obj/item/stack/material/plastic{ + amount = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/command) +"ds" = ( +/obj/structure/table/standard, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dt" = ( +/obj/structure/table/standard, +/obj/item/pen/blue, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"du" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dv" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/central) +"dz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Northwest" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + input_tag = "o2_in"; + name = "oxygen control console"; + output_tag = "o2_out"; + sensor_name = "Oxygen Supply"; + sensor_tag = "o2_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"dA" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dB" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/port) +"dC" = ( +/obj/structure/firedoor_assembly, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dD" = ( +/obj/effect/wallframe_spawn, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dE" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dF" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "sub_cargo_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/port) +"dG" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_cargo_outer" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"dH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "sub_cargo_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "sub_cargo_airlock"; + pixel_y = -25; + tag_airpump = "sub_cargo_pump"; + tag_chamber_sensor = "sub_cargo_sensor"; + tag_exterior_door = "sub_cargo_outer"; + tag_interior_door = "sub_cargo_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "sub_cargo_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dI" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_cargo_inner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"dJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "sub_cargo_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dK" = ( +/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/plating, +/area/exodus/maintenance/sub/central) +"dL" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"dM" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dO" = ( +/obj/random/obstruction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dP" = ( +/obj/machinery/door/airlock, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"dQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dR" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dS" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"dT" = ( +/obj/machinery/portable_atmospherics/canister/empty/air, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"dU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/warning/vacuum{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dV" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dW" = ( +/turf/space, +/area/exodus/maintenance/sub/port) +"dX" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"dZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ea" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eb" = ( +/obj/structure/door_assembly, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"ec" = ( +/obj/machinery/camera/motion/command{ + c_tag = "Bridge - Sublevel - Port"; + dir = 8 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/command) +"ed" = ( +/obj/machinery/camera/motion/command{ + c_tag = "Bridge - Sublevel - Starboard"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/command) +"ee" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ef" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/central) +"eg" = ( +/obj/structure/door_assembly, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eh" = ( +/obj/turbolift_map_holder/exodus/cargo, +/turf/space, +/area/exodus/maintenance/sub/port) +"ei" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/oxygen_pump{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"ej" = ( +/obj/machinery/camera/motion/command{ + c_tag = "Bridge - Sublevel - Center"; + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/command) +"ek" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"el" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/sub/starboard) +"em" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/sub/starboard) +"en" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ep" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eq" = ( +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"er" = ( +/obj/item/stack/material/steel{ + amount = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"es" = ( +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"et" = ( +/obj/structure/sign/directions/supply{ + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/port) +"eu" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"ev" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"ew" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"ex" = ( +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/sub/starboard) +"ey" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/sub/starboard) +"ez" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"eA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eB" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"eD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eE" = ( +/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/exodus/maintenance/sub/port) +"eF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"eH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"eI" = ( +/obj/random/obstruction, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"eJ" = ( +/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/plating, +/area/exodus/maintenance/sub/central) +"eK" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp/green, +/obj/item/device/radio, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"eL" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"eM" = ( +/obj/random/tech_supply, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eN" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/power/sensor{ + id_tag = "Command Sublevel Subgrid"; + name = "Powernet Sensor - Command Sublevel Subgrid"; + name_tag = "Command Sublevel Subgrid" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"eO" = ( +/obj/machinery/power/smes/buildable/max_cap_in_out, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"eP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"eQ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"eR" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eT" = ( +/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/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eU" = ( +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eV" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/starboard) +"eW" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/structure/sign/warning/vacuum{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eX" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"eY" = ( +/obj/machinery/camera/network/maintenance{ + c_tag = "Cargo Elevator"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"eZ" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fa" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fb" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"fc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"fd" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"fe" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"ff" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/closet/crate/plastic, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/obj/structure/sign/warning/high_voltage{ + dir = 4; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"fg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fi" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "sub_research_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/starboard) +"fj" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_research_outer" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "sub_research_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "sub_research_airlock"; + pixel_y = -25; + tag_airpump = "sub_research_pump"; + tag_chamber_sensor = "sub_research_sensor"; + tag_exterior_door = "sub_research_outer"; + tag_interior_door = "sub_research_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "sub_research_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fl" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_research_inner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"fm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "sub_research_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fn" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fo" = ( +/obj/structure/sign/directions/science{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/starboard) +"fp" = ( +/turf/space, +/area/exodus/maintenance/sub/starboard) +"fq" = ( +/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/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/command) +"fr" = ( +/obj/structure/disposalpipe/broken{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fs" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ft" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fu" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fv" = ( +/obj/item/crowbar, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fw" = ( +/obj/machinery/camera/network/maintenance{ + c_tag = "Research Elevator"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fx" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fy" = ( +/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/airless, +/area/exodus/maintenance/sub/command) +"fz" = ( +/obj/machinery/camera/motion/command{ + c_tag = "Bridge - Sublevel - Aft" + }, +/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/airless, +/area/exodus/maintenance/sub/command) +"fA" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fB" = ( +/turf/simulated/wall/prepainted, +/area/space) +"fC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fD" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + id_tag = "n2_in"; + name = "nitrogen control console"; + output_tag = "n2_out"; + sensor_name = "Nitrogen Supply"; + sensor_tag = "n2_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"fF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fI" = ( +/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/airless, +/area/exodus/maintenance/sub/command) +"fJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fL" = ( +/obj/machinery/oxygen_pump{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fM" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fN" = ( +/obj/turbolift_map_holder/exodus/research, +/turf/space, +/area/exodus/maintenance/sub/starboard) +"fO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fQ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fR" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/starboard) +"fS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fT" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fV" = ( +/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/airless, +/area/space) +"fW" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"fY" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"fZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ga" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "co2_in"; + name = "carbon dioxide control console"; + output_tag = "co2_out"; + sensor_name = "Carbon Dioxide Supply"; + sensor_tag = "co2_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"gc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gd" = ( +/obj/structure/sign/warning/lethal_turrets, +/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/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"ge" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"gf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"gg" = ( +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"gi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/central) +"gj" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gk" = ( +/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/wall/prepainted, +/area/exodus/maintenance/sub/central) +"gl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"gm" = ( +/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/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gn" = ( +/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/exodus/maintenance/sub/central) +"go" = ( +/obj/machinery/light/small, +/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/exodus/maintenance/sub/central) +"gp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/maintenance/sub/central) +"gq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/sign/warning/vacuum{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gt" = ( +/obj/machinery/light/small{ + 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/plating, +/area/exodus/maintenance/sub/central) +"gu" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gv" = ( +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gw" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"gy" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gz" = ( +/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/plating, +/area/exodus/maintenance/sub/central) +"gA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"gB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gC" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/aft) +"gF" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gI" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gJ" = ( +/obj/item/stack/material/rods, +/turf/space, +/area/space) +"gK" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"gM" = ( +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"gN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"gP" = ( +/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/plating, +/area/exodus/maintenance/sub/aft) +"gQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/central) +"gS" = ( +/obj/machinery/light/small{ + 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/plating, +/area/exodus/maintenance/sub/aft) +"gT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"gU" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"gV" = ( +/obj/structure/grille, +/turf/space, +/area/space) +"gW" = ( +/obj/structure/grille/broken{ + dir = 4 + }, +/turf/space, +/area/space) +"gX" = ( +/obj/structure/grille/broken{ + dir = 8 + }, +/turf/space, +/area/space) +"gY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"gZ" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"ha" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hb" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hc" = ( +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"he" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"hh" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hi" = ( +/obj/item/storage/mirror{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"hk" = ( +/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/plating, +/area/exodus/maintenance/sub/starboard) +"hl" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hm" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"ho" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hp" = ( +/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/plating, +/area/exodus/maintenance/sub/aft) +"hq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hr" = ( +/obj/structure/grille, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"hs" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/relay_station) +"ht" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hu" = ( +/obj/item/frame/air_alarm, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hv" = ( +/turf/simulated/floor/reinforced/airmix, +/area/exodus/engineering/atmos) +"hw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Air" + }, +/turf/simulated/floor/reinforced/airmix, +/area/exodus/engineering/atmos) +"hx" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/exodus/engineering/atmos) +"hy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Oxygen" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/exodus/engineering/atmos) +"hz" = ( +/turf/simulated/floor/reinforced/nitrogen, +/area/exodus/engineering/atmos) +"hA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Nitrogen" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/exodus/engineering/atmos) +"hB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/relay_station) +"hC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/bluespacerelay, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/sub/relay_station) +"hD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/relay_station) +"hE" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hF" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hG" = ( +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"hH" = ( +/obj/machinery/portable_atmospherics/canister/empty/air, +/turf/simulated/floor/reinforced/airmix, +/area/exodus/engineering/atmos) +"hI" = ( +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/reinforced/oxygen, +/area/exodus/engineering/atmos) +"hJ" = ( +/obj/machinery/portable_atmospherics/canister/empty/nitrogen, +/turf/simulated/floor/reinforced/nitrogen, +/area/exodus/engineering/atmos) +"hK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/relay_station) +"hL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/sub/relay_station) +"hM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/maintenance{ + c_tag = "Relay Station"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/relay_station) +"hN" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + 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/exodus/engineering/atmos) +"hO" = ( +/obj/machinery/air_sensor{ + id_tag = "air_sensor" + }, +/turf/simulated/floor/reinforced/airmix, +/area/exodus/engineering/atmos) +"hP" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + icon_state = "map_injector"; + id_tag = "air_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/exodus/engineering/atmos) +"hQ" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + icon_state = "map_injector"; + id_tag = "o2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/exodus/engineering/atmos) +"hR" = ( +/obj/machinery/air_sensor{ + id_tag = "o2_sensor" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/exodus/engineering/atmos) +"hS" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + 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/exodus/engineering/atmos) +"hT" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + icon_state = "map_injector"; + id_tag = "n2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/exodus/engineering/atmos) +"hU" = ( +/obj/machinery/air_sensor{ + id_tag = "n2_sensor" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/exodus/engineering/atmos) +"hV" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + 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/exodus/engineering/atmos) +"hW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"hX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/engineering{ + name = "Telecommunications" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"hY" = ( +/obj/structure/grille/broken{ + dir = 1 + }, +/turf/space, +/area/space) +"hZ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/meter{ + id_tag = "mair_out_meter"; + name = "Mixed Air Tank Out" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"ia" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"ib" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/meter{ + id_tag = "mair_in_meter"; + name = "Mixed Air Tank In" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"ic" = ( +/obj/structure/grille, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"id" = ( +/obj/structure/grille, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"ie" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"if" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ig" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ih" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ii" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ij" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/atmos{ + name = "Atmospherics" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/atmos) +"ik" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/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" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"il" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"im" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"in" = ( +/obj/structure/cable/cyan{ + 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/sortjunction/flipped{ + dir = 1; + name = "Atmospherics"; + sort_type = "Atmospherics"; + sortdir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"ip" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice, +/turf/space, +/area/space) +"ir" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/space, +/area/space) +"is" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/space, +/area/space) +"it" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iv" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ix" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/atmos{ + name = "Atmospherics" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/atmos) +"iz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iA" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iB" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/red{ + dir = 8 + }, +/obj/structure/disposalpipe/up{ + dir = 1; + icon_state = "pipe-u" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iC" = ( +/obj/machinery/atmospherics/pipe/zpipe/up{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/up{ + dir = 1; + icon_state = "pipe-u" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iD" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"iF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iR" = ( +/obj/machinery/meter{ + id_tag = "wloop_atm_meter"; + name = "Waste Loop" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iS" = ( +/obj/machinery/meter{ + id_tag = "dloop_atm_meter"; + name = "Distribution Loop" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"iW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/atmospherics) +"iX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"iY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"iZ" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Air Mix to Connector" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ja" = ( +/obj/machinery/atmospherics/valve/digital/open{ + name = "Mixed Air Outlet Valve" + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jc" = ( +/obj/machinery/atmospherics/valve/digital/open{ + name = "Mixed Air Inlet Valve" + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"je" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "n2o_in"; + name = "nitrous oxide control computer"; + output_tag = "n2o_out"; + sensor_name = "Nitrous Oxide Supply"; + sensor_tag = "n2o_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jf" = ( +/obj/machinery/atmospherics/valve/digital/open{ + name = "Oxygen Outlet Valve" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jg" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "O2 to Connector" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ji" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "waste_in"; + name = "waste control console"; + output_tag = "waste_out"; + sensor_name = "Waste Tank"; + sensor_tag = "waste_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jj" = ( +/obj/machinery/atmospherics/valve/digital/open{ + name = "Nitrogen Outlet Valve" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jk" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "N2 to Connector" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jl" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jm" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jn" = ( +/obj/structure/dispenser, +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jo" = ( +/obj/item/device/t_scanner, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/item/device/radio/headset/headset_eng, +/obj/item/device/paint_sprayer, +/obj/machinery/requests_console{ + department = "Atmospherics"; + name = "Atmos RC"; + pixel_y = 28 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jp" = ( +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/glasses/welding, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jq" = ( +/obj/item/wrench, +/obj/structure/sign/atmosplaque{ + pixel_y = 32 + }, +/obj/machinery/cell_charger, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Northeast" + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jr" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/item/clothing/gloves/thick, +/obj/item/clothing/gloves/thick, +/obj/item/storage/belt/utility/atmostech, +/obj/item/storage/belt/utility/atmostech, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"js" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ju" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jv" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Port"; + target_pressure = 200 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jw" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Port to Waste" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jx" = ( +/obj/machinery/power/sensor{ + id_tag = "Atmospherics Subgrid"; + name = "Powernet Sensor - Atmospherics Subgrid"; + name_tag = "Atmospherics Subgrid" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/atmospherics) +"jy" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Atmospherics"; + charge = 5e+006; + input_attempt = 1; + input_level = 250000; + output_attempt = 1; + output_level = 250000 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/atmospherics) +"jz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jA" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jB" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jC" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jD" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jE" = ( +/obj/item/material/ashtray/plastic, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"jF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"jG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jI" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Air Tank Bypass Pump" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jN" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Scrubber to Waste" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jP" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Supply" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"jR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/atmospherics) +"jS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Maintenance"; + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/atmospherics) +"jT" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/atmospherics) +"jU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/atmospherics) +"jV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"jY" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/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/steel_grid, +/area/exodus/maintenance/sub/aft) +"jZ" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"ka" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"kb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ke" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kf" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "O2 to Mixing" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ki" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"km" = ( +/obj/machinery/pipedispenser, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kn" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"kq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"kr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"ks" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"kt" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"ku" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"kv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ky" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kz" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_east = 1; + tag_east_con = 0.79; + tag_north = 1; + tag_north_con = 0.21; + tag_west = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kA" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kC" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "N2 to Mixing" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kF" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kH" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Supply to Waste" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kI" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kL" = ( +/obj/machinery/pipedispenser/disposal, +/obj/structure/window/reinforced, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kM" = ( +/turf/space, +/area/exodus/maintenance/sub/aft) +"kN" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"kO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/oxygen_pump{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"kP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"kQ" = ( +/obj/item/stack/material/rods{ + amount = 6 + }, +/turf/space, +/area/space) +"kR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port to Supply" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"kY" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"kZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"la" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"lb" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "sub_engineering_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"lc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_engineering_inner" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"ld" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "sub_engineering_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "sub_engineering_airlock"; + pixel_y = -25; + tag_airpump = "sub_engineering_pump"; + tag_chamber_sensor = "sub_engineering_sensor"; + tag_exterior_door = "sub_engineering_outer"; + tag_interior_door = "sub_engineering_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "sub_engineering_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"le" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "sub_engineering_outer" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"lf" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "sub_engineering_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/aft) +"lg" = ( +/obj/structure/grille/broken, +/turf/space, +/area/space) +"lh" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"li" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air Mix to Port" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lk" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ll" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lm" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ln" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lo" = ( +/obj/machinery/atmospherics/unary/heater{ + icon_state = "heater" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lp" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lq" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Southeast"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lr" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"ls" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/maintenance/sub/aft) +"lt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance" + }, +/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/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"lu" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"lv" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"lw" = ( +/obj/structure/sign/warning/vacuum{ + dir = 4; + pixel_x = 32 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"lx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/sub/aft) +"ly" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos) +"lz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lA" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lB" = ( +/obj/machinery/atmospherics/pipe/cap/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lC" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"lD" = ( +/obj/machinery/camera/network/maintenance{ + c_tag = "Engineering Elevator"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"lE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lH" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Waste" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lK" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lL" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lM" = ( +/obj/turbolift_map_holder/exodus/engineering, +/turf/space, +/area/exodus/maintenance/sub/aft) +"lN" = ( +/obj/structure/sign/directions/engineering{ + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/aft) +"lO" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"lP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lR" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lS" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_north = 3; + tag_south = 6; + tag_west = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lT" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_north = 4; + tag_south = 7; + tag_west = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lY" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"lZ" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ma" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mb" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mixing to Waste" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"md" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + name = "Waste to Space" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"me" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/atmos) +"mi" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + 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/exodus/maintenance/sub/aft) +"mj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"mk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ml" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mn" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mo" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Mixing to Port" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mq" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ms" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/atmos) +"mt" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"mu" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "CO2 to Mixing" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mw" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Phoron to Mixing" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mx" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "N2O to Mixing" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"my" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Mixing to Mix Tank" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mz" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mix Tank to Port" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mD" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mE" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mF" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mG" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mH" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mK" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "CO2 Outlet Valve" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mL" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "CO2 to Connector" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mM" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Southwest"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/corner/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/telecomms) +"mO" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "Phoron Outlet Valve" + }, +/obj/effect/floor_decal/corner/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mP" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Phoron to Connector" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mR" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"mS" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "N2O Outlet Valve" + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mT" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "N2O to Connector" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mU" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "Gas Mix Inlet Valve" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics South"; + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mW" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "Gas Mix Outlet Valve" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mX" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Mix Tank to Connector" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"mZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"na" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"nb" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"nc" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"nd" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"ne" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/atmos) +"nf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/airless, +/area/exodus/engineering/atmos) +"ng" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"nh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"ni" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"nj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"nk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"nl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"nm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"nn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"no" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos) +"np" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/space) +"nq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/space, +/area/space) +"nr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/space, +/area/space) +"ns" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/space, +/area/space) +"nt" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/space, +/area/space) +"nu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/meter, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/atmos) +"nv" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "co2_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/exodus/engineering/atmos) +"nw" = ( +/obj/machinery/air_sensor{ + id_tag = "co2_sensor" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/exodus/engineering/atmos) +"nx" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "co2_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/carbon_dioxide, +/area/exodus/engineering/atmos) +"nB" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "n2o_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/exodus/engineering/atmos) +"nC" = ( +/obj/machinery/air_sensor{ + id_tag = "n2o_sensor" + }, +/turf/simulated/floor/reinforced/n20, +/area/exodus/engineering/atmos) +"nD" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "n2o_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/n20, +/area/exodus/engineering/atmos) +"nE" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "waste_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/atmos) +"nF" = ( +/obj/machinery/air_sensor{ + id_tag = "waste_sensor" + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/atmos) +"nG" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + 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/exodus/engineering/atmos) +"nH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"nI" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/exodus/engineering/atmos) +"nJ" = ( +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/exodus/engineering/atmos) +"nM" = ( +/turf/simulated/floor/reinforced/n20, +/area/exodus/engineering/atmos) +"nN" = ( +/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, +/turf/simulated/floor/reinforced/n20, +/area/exodus/engineering/atmos) +"nO" = ( +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/atmos) +"nP" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/atmos) +"nQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/atmos) +"nR" = ( +/obj/machinery/light/small, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Carbon Dioxide"; + dir = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/exodus/engineering/atmos) +"nT" = ( +/obj/machinery/light/small, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Nitrous Oxide"; + dir = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/exodus/engineering/atmos) +"nU" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Tank - Gas Mixing"; + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/atmos) +"nV" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"nW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"nX" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"nY" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"nZ" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"oa" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"ob" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"oc" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"od" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"oe" = ( +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"of" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/fore) +"og" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Sublevel - Turret Control" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/turretid/stun{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/sub/command) +"oh" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/starboard) +"oi" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/port) +"om" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/ntnet_relay, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"oz" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"oE" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"oQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"pb" = ( +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"ps" = ( +/obj/machinery/telecomms/hub/preset, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"qe" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"qQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"rj" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Server Room Starboard" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"rL" = ( +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/structure/table/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"sf" = ( +/obj/machinery/telecomms/receiver/preset_right, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"sJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/exodus/maintenance/telecomms) +"ta" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/obj/random_multi/single_item/boombox, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"tq" = ( +/obj/machinery/telecomms/server/presets/service, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"ts" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"tE" = ( +/obj/machinery/telecomms/processor/preset_four, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"tX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/exodus/maintenance/telecomms) +"ud" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"ue" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Telecommunications" + }, +/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/steel_ridged, +/area/exodus/maintenance/sub/aft) +"uf" = ( +/obj/machinery/telecomms/bus/preset_two, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"up" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/exodus/maintenance/telecomms) +"ux" = ( +/obj/machinery/telecomms/server/presets/security, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"vw" = ( +/obj/machinery/telecomms/server/presets/medical, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"ww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/telecomms) +"wC" = ( +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"xi" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Server Room Port"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"xy" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8; + icon_state = "warningcorner" + }, +/obj/structure/window/reinforced, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/storage/lunchbox/dais{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"xK" = ( +/obj/machinery/telecomms/processor/preset_three, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"xM" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/telecomms) +"xZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/telecomms) +"yb" = ( +/obj/effect/shuttle_landmark/exodus_sub_starboard, +/turf/space, +/area/space) +"yy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"zH" = ( +/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/steel_grid, +/area/exodus/maintenance/sub/aft) +"zJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"zN" = ( +/obj/structure/table/steel, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"zR" = ( +/obj/machinery/telecomms/processor/preset_one, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"Ad" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"Ai" = ( +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"Ay" = ( +/obj/item/clothing/head/hardhat{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"AG" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/folder/yellow, +/obj/item/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"AU" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/random/smokes, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/dais{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"AW" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 4; + network = "tcommsat" + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"Bb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"Bf" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"Bq" = ( +/obj/machinery/telecomms/bus/preset_one, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"BO" = ( +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"BR" = ( +/obj/structure/table/steel, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"CI" = ( +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/structure/table/rack, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"CJ" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/telecomms) +"CN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Atmospherics"; + charge = 5e+006; + input_attempt = 1; + input_level = 250000; + output_attempt = 1; + output_level = 250000 + }, +/obj/structure/cable/green, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"CT" = ( +/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/steel_grid, +/area/exodus/maintenance/sub/aft) +"Dm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/telecomms) +"DZ" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"Ec" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"EG" = ( +/obj/structure/table/steel, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/sticky_pad/random, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"Gc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"GD" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"GE" = ( +/obj/machinery/telecomms/bus/preset_four, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"GS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"Ho" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Server Entry"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"Hq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"Hz" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/telecomms) +"IA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/sub/aft) +"IL" = ( +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"IR" = ( +/obj/machinery/computer/telecomms/server{ + dir = 4; + network = "tcommsat" + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"IX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"Ja" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"Jv" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/message_server, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"JP" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"Kg" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"KB" = ( +/obj/effect/shuttle_landmark/exodus_sub_aft, +/turf/space, +/area/space) +"KJ" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"Lu" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"LF" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"LN" = ( +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/structure/table/rack, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/computer/hard_drive/portable, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"Me" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecoms Server Access"; + secured_wires = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/exodus/maintenance/telecomms) +"Mh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"Mp" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/wintercoat/engineering, +/obj/item/clothing/suit/storage/hooded/wintercoat/dais{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"MC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/exodus/maintenance/telecomms) +"MJ" = ( +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Control"; + dir = 8 + }, +/obj/machinery/computer/modular/preset/aislot/research{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"MR" = ( +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/structure/table/rack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"MV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/exodus/maintenance/telecomms) +"Nb" = ( +/obj/machinery/telecomms/server/presets/science, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"Ni" = ( +/obj/effect/shuttle_landmark/exodus_sub_fore, +/turf/space, +/area/space) +"Nj" = ( +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"Nw" = ( +/obj/structure/table/steel, +/obj/item/storage/box/cups, +/obj/machinery/power/apc/hyper{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"NK" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/starboard) +"Ou" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/port) +"Ox" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"Oz" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Telecoms Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/exodus/maintenance/telecomms) +"PM" = ( +/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/engineering{ + name = "Engineering Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"Qe" = ( +/obj/structure/lattice, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/sub/aft) +"Qm" = ( +/obj/machinery/telecomms/processor/preset_two, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"Qs" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/circuitboard/telecomms/processor, +/obj/item/stock_parts/circuitboard/telecomms/processor, +/obj/item/stock_parts/circuitboard/telecomms/receiver, +/obj/item/stock_parts/circuitboard/telecomms/server, +/obj/item/stock_parts/circuitboard/telecomms/server, +/obj/item/stock_parts/circuitboard/telecomms/bus, +/obj/item/stock_parts/circuitboard/telecomms/bus, +/obj/item/stock_parts/circuitboard/telecomms/broadcaster, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/telecomms) +"QB" = ( +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"Re" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"RX" = ( +/obj/machinery/field_generator, +/turf/simulated/floor/airless, +/area/space) +"Se" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"Si" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"Sp" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"Sq" = ( +/obj/structure/sign/warning/server_room, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/telecomms) +"SM" = ( +/obj/effect/shuttle_landmark/exodus_sub_port, +/turf/space, +/area/space) +"SP" = ( +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/structure/table/rack, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/maintenance/telecomms) +"TE" = ( +/obj/machinery/telecomms/server/presets/command, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/bluegrid, +/area/exodus/maintenance/telecomms) +"TI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"TT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -22 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/maintenance/telecomms) +"UC" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"UK" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"UM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"Wb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) +"Xu" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/fore) +"XG" = ( +/obj/machinery/gravity_generator, +/turf/simulated/floor/airless, +/area/space) +"Yf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/sub/aft) +"Yt" = ( +/obj/machinery/alarm/server{ + dir = 4; + pixel_x = -22; + req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_ATMOS")) + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/telecomms) +"YT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/maintenance/telecomms) +"Zt" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/sub/aft) +"ZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/sub/aft) + +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kQ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +gV +gV +hY +ab +ab +ab +ab +ab +hY +aa +lg +ab +ab +ab +ab +ab +gV +hY +lg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bd +bd +bj +bj +bd +bd +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +be +be +bk +be +be +bd +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ab +ab +ab +ab +ab +gV +gV +gV +ab +ab +ab +ab +ab +gV +gV +gV +ab +ab +ab +ab +ab +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bf +bh +bl +bo +bs +bd +aa +aa +ac +aa +aa +bB +bB +bB +bB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +bd +be +bi +bm +bm +bt +bd +bd +bd +bd +bd +bd +bB +bT +be +bB +bd +bd +bd +bd +bd +bB +bB +aa +aa +ab +ab +ab +ab +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bg +be +be +be +be +bd +be +bS +be +bF +be +cr +cu +be +bS +be +bF +be +bS +be +be +bB +ac +ac +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +gJ +aa +aa +ac +aa +aa +aa +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bd +be +be +bp +bp +bd +be +bd +bd +bd +bd +bd +bd +bd +bd +bd +bd +bd +bd +cY +bT +bB +aa +aa +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ac +aa +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aa +ac +aa +aa +gJ +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +aa +aa +ac +ac +aa +aa +ac +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +bd +be +be +be +be +bA +be +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +bd +bG +bB +bB +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +ac +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +aa +ac +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +be +be +bq +bu +bd +be +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +bd +be +bd +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +ac +ac +ac +aa +aa +aa +ac +aa +aa +aa +ac +ac +aa +aa +ac +aa +ac +ac +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ac +aa +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +eM +bn +br +bu +bd +be +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +bd +bF +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +ac +aa +aa +ac +ac +aa +aa +aa +ac +aa +aa +ac +ac +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bd +bd +bd +bd +bd +be +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +bd +be +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +aa +aa +ac +ac +aa +ac +aa +ac +ac +aa +aa +aa +aa +ac +aa +aa +aa +ac +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +be +bd +aa +aa +ac +aa +aa +ac +ab +ab +ac +ac +bd +bE +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +ab +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +ac +ac +ac +nf +np +aa +aa +aa +aa +ac +ac +aa +aa +aa +ab +aa +aa +aa +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +be +bd +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +bd +be +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +aa +iF +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +ng +nq +ac +ac +ac +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +be +bd +aa +aa +ac +aa +aa +ac +aa +aa +aa +aa +bd +be +bd +aa +aa +aa +aa +aa +aa +ac +bB +bB +bB +bB +bB +bB +bd +bd +bd +aa +aa +ac +aa +bY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +hr +hr +hr +hr +hr +ac +iG +iZ +jG +iv +iv +iv +iv +iv +iv +iv +iv +iv +iv +iv +iK +nq +hr +hr +hr +hr +hr +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +bd +be +bd +aa +aa +ac +aa +aa +ac +aa +aa +aa +aa +bd +be +bj +aa +aa +aa +aa +aa +aa +ac +bB +dW +dW +dW +eh +et +bf +be +bd +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ab +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +hr +hv +hv +hN +hZ +iq +iH +ja +jH +iw +iw +kv +iv +iv +iv +lP +jK +jK +jK +mI +iL +nr +ic +nv +nI +nI +hr +aa +aa +ac +ac +aa +aa +aa +ab +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +bE +bd +aa +ac +ac +aa +aa +ac +aa +aa +aa +aa +bd +be +bj +aa +aa +aa +aa +aa +dB +dF +bB +dW +dW +dW +dW +Ou +be +be +bd +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gV +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +hr +hw +hH +hO +ia +ac +iI +aO +jI +iv +iv +kw +iv +iv +iv +lQ +iv +iv +iv +gb +nh +nq +ia +nw +nJ +nR +hr +aa +aa +aa +ac +ac +aa +aa +ab +aa +aa +gW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +bd +be +bd +aa +aa +ac +aa +aa +ac +aa +aQ +aQ +ac +bd +be +bd +aa +aa +aa +aa +aa +bB +dG +bB +dW +dW +dW +dW +Ou +be +eY +bd +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gV +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hr +hv +hv +hP +ib +iq +iJ +jc +jJ +iw +kv +kw +lh +ly +lE +lQ +iv +mk +mu +mK +ni +ns +id +nx +nI +nI +hr +ac +ac +ac +ac +ac +ac +ac +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bB +bF +bd +bd +bd +bd +bd +bd +ac +aa +aa +aa +aa +bd +be +bd +aa +aa +aa +aa +aa +bB +be +bB +dW +dW +dW +dW +bB +bf +be +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gV +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +hr +hr +hr +hr +hr +ac +iK +iv +iv +iv +kw +kw +iv +iv +iv +lR +iv +kc +mv +mL +nj +nq +hr +hr +hr +hr +hr +aa +aa +aa +ac +ac +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +bB +be +bd +bZ +bZ +bZ +bZ +bd +ac +aa +aa +aa +aa +bd +be +bd +aQ +aa +aa +aa +aa +bB +dH +bB +bB +bB +bB +bB +bB +be +be +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ab +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +hr +hx +hx +hQ +ic +ir +iL +jd +jK +jK +kx +kx +jK +jK +lF +lS +lF +kd +jK +mM +nk +nr +ic +bv +bJ +bJ +hr +aa +aa +ac +ac +aa +aa +aa +ab +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +ac +aa +bB +bG +bd +bd +bZ +bZ +bZ +bd +bd +bd +bd +bd +bd +bd +be +bd +bd +bd +bd +bd +bd +bB +dI +bB +dX +dX +bT +cr +eu +bV +be +bj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +hr +hy +hI +hR +ia +ac +iI +dz +iv +iv +ky +kw +iv +iv +iv +lQ +iv +kc +iv +aL +nl +nq +ia +bC +cQ +bL +hr +aa +ac +ac +aa +aa +aa +aa +gV +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +bB +be +bT +bd +bd +bd +bd +bd +cA +cA +be +cN +bU +bU +bU +bU +dh +bU +ci +bU +ca +bU +dJ +dU +dY +ea +bU +ei +ev +eA +oi +bj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +hr +hx +hx +hS +id +is +iM +jf +jL +kb +kz +kw +iv +iv +iv +lR +iv +ml +mw +mO +ni +ns +id +bI +bJ +bJ +hr +ac +ac +aa +aa +aa +aa +aa +gV +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bB +bH +bU +ca +bU +ci +bU +ca +bU +bU +bU +cO +bd +bd +bd +bd +bd +bd +bd +bd +bd +be +be +be +bd +bd +bd +bd +bd +eB +bd +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +hr +hr +hr +hr +hr +ac +iN +jg +jG +kc +kA +kw +iv +iv +iv +lQ +iv +kc +mv +mP +nj +nq +hr +hr +hr +hr +hr +aa +ac +ac +aa +aa +aa +aa +gV +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bB +eD +bd +bd +bd +bd +bd +bd +bd +bd +bd +bd +bd +aa +aa +aa +aa +ac +aa +aa +bd +bd +bd +bd +bd +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ab +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +hr +hz +hz +hT +ic +ir +iL +jh +jK +kd +kd +kx +jK +jK +lF +lT +lF +kd +jK +mQ +nk +nr +ic +nB +nM +nM +hr +aa +aa +ac +ac +aa +aa +aa +ab +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bB +eA +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +eC +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gV +aa +aa +ab +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +hr +hA +hJ +hU +ia +ac +iO +fE +iv +kc +kc +kw +iv +iv +iv +lU +iv +kc +iv +je +nl +nq +ia +nC +nN +nT +hr +aa +aa +aa +ac +ac +aa +aa +ab +aa +aa +gX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bB +eC +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +bd +bd +bd +bd +bd +bd +aa +aa +bd +eA +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gW +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hr +hz +hz +hV +id +is +iP +jj +jL +ke +kB +kw +lh +ly +lE +ki +iv +ml +mx +mS +ni +ns +nu +nD +nM +nM +hr +ac +ac +ac +ac +ac +ac +ac +ab +kQ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +bd +be +be +be +be +bd +aa +aa +bd +eD +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gV +aa +aa +ab +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +hr +hr +hr +hr +hr +ac +iQ +jk +jG +kc +kc +kw +iv +iv +iv +ki +iv +kc +mv +mT +nj +nq +hr +hr +hr +hr +hr +aa +aa +aa +ac +ac +aa +aa +ab +aa +aa +gW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +eB +bd +bd +aa +aa +aa +aa +aQ +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +bd +be +dp +dp +be +bd +bd +bd +bd +eA +bd +ac +ac +ac +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ab +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ia +iv +iv +kc +kc +kw +iv +iv +iv +lV +mc +mm +iv +iv +nm +nq +aa +ac +aa +ac +aa +aa +aa +ac +ac +aa +aa +aa +ab +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +bd +bM +bV +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +bd +bE +dp +dV +bU +eb +bU +bU +bU +eE +bd +aa +aa +aa +aa +ac +aa +ab +ab +aa +aa +aa +aa +aa +aa +gJ +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +hW +jl +iv +kf +kC +kw +iv +iv +iv +ki +iv +kc +iv +lh +nm +nq +hr +hr +hr +hr +hr +aa +ac +ac +aa +aa +aa +aa +gV +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +bd +be +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +bd +be +be +gM +be +bd +bd +bd +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +hW +jm +iv +kg +kD +kR +jL +jL +jL +lW +jL +mn +my +mU +nn +ns +id +nE +nO +nO +hr +ac +ac +aa +aa +aa +aa +aa +gV +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +bd +bd +eA +bd +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +bd +be +bd +bd +bd +bd +aa +aa +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +hW +jn +iv +iv +kE +kS +kv +iv +iv +ki +iv +mo +iv +ji +nl +nq +ia +nF +nP +nU +hr +aa +ac +ac +aa +aa +aa +aa +gV +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ni +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +bd +dC +bd +ac +ac +ac +ac +ac +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ab +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +ac +ac +aa +hW +jo +iv +iv +kF +kw +li +iv +iv +ki +iv +mp +mz +mW +ni +ns +nu +nG +nQ +nO +hr +aa +aa +ac +ac +aa +aa +aa +ab +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +ac +aa +aa +ac +bd +bd +bd +be +bd +ac +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +ac +ac +ac +ac +ac +ac +ab +aa +aa +aa +aa +aa +aa +aa +gX +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +ac +ac +aa +aa +hW +jp +jM +kh +kG +kT +lj +lz +lG +kj +iv +lJ +mv +mX +nj +nq +hr +hr +hr +hr +hr +aa +aa +aa +ac +ac +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +ac +bd +be +be +be +bd +ac +aa +aa +aa +aa +bd +eF +bd +aa +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +hW +jq +iv +ki +kH +kw +lk +ly +lH +lX +md +mq +mA +mY +no +nt +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +bd +eA +bj +aa +aa +aa +aa +ac +ac +ac +aa +aa +ac +ac +ac +ac +ac +bd +dp +be +be +bd +ac +ac +aa +aa +aa +bd +eA +bd +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +gW +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +hW +jr +iv +ki +kI +kU +ll +lA +lI +lA +lA +mf +mB +hW +hW +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +aa +aa +ab +aa +aa +gV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +bd +eA +bd +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +aa +aa +aa +ac +bd +dq +be +be +bd +ac +aa +aa +aa +aa +bd +eC +bd +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +hW +hW +hW +hW +js +iv +ki +kJ +kw +iv +iv +lJ +iv +bK +iv +mC +mZ +hW +aa +aa +aa +aa +ac +ac +aa +aa +ac +ac +aa +aa +aa +ab +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aI +aG +ap +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +bd +eA +bd +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +bd +bd +bd +bd +bd +aQ +aa +aa +aa +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +hW +ie +it +iR +jt +jN +kj +kJ +kw +lm +iv +lJ +iv +bN +iv +mD +na +hW +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +am +am +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +bd +eD +bd +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aQ +aa +aa +aa +aa +cv +eH +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +ef +ef +ef +ef +ef +ef +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +hW +if +iu +iS +ju +jO +kk +kK +kw +ln +lA +lI +lY +me +iv +mE +nb +hW +ac +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ad +am +av +aH +aE +aP +aE +aU +aE +aE +aE +aE +aF +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aQ +aa +aa +aa +aa +cv +eG +cF +cF +fx +fH +fO +fT +fW +cF +cF +gc +cF +gi +cF +gc +cF +cF +cv +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +hW +ig +iv +iT +ju +jP +kl +iw +kV +lo +lA +lK +lZ +lK +iv +mF +nc +hW +ac +ac +aa +aa +aa +aa +aa +ac +aa +aa +ab +aa +aa +aa +aa +aa +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +aM +ap +ap +ap +ap +ap +ap +ap +ap +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bd +eC +bd +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aQ +aa +aa +aa +aa +cv +eG +cF +cF +cF +cF +fP +fU +fX +cF +ga +cv +cv +cv +cv +cv +cF +cF +cv +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hW +ih +iw +iU +jv +iw +kl +iw +kW +lp +lB +lI +ma +mf +iv +mG +nd +hW +aa +ac +ac +aa +aa +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +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 +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +ac +ac +aa +aa +ac +aa +aa +aa +aa +bd +eA +bd +aa +aa +aa +aa +aa +aa +aa +aa +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +eI +fa +fa +cF +cF +cF +cF +cF +cF +cF +cF +gg +gj +gj +cv +cF +cF +ef +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +aa +aa +aa +hW +ii +ix +iV +jw +jQ +km +kL +kX +lq +iv +lL +mb +mg +mr +mH +ne +hW +aa +aa +ac +ac +aa +ac +aa +aa +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ax +ap +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +ac +aa +ac +aa +aa +aa +aa +bd +eD +bB +bB +aa +aa +aa +aa +aa +aa +aa +cv +cF +cP +cw +cw +cw +dm +cw +dy +cw +dm +cw +cw +cw +cw +cw +cw +eJ +cw +cw +cw +cw +fQ +cw +cw +cw +cw +cw +cw +cw +do +cv +cF +cF +ef +ef +ef +aa +ac +ac +aa +aa +aa +aa +ac +aa +aa +ac +ac +aa +aa +aa +aa +hW +ij +iy +iW +iW +jR +iW +hW +hW +hW +hW +hW +hW +mh +ms +hW +hW +hW +ly +aa +aa +ac +ac +ac +aa +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ad +ad +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +bd +bd +bB +bW +bT +bB +bd +bd +cv +cv +cv +cv +cv +cv +cF +eG +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +eG +cv +gy +gK +cF +gR +ef +aa +aa +ac +aa +aa +aa +aa +ac +aa +aa +aa +ac +ac +aa +aa +IA +IA +ik +iz +iW +jx +jS +iW +kM +kM +kM +kM +lM +IA +mi +kY +IA +gF +gF +gE +aa +aa +aa +aa +ac +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ad +ah +ah +ah +aB +ad +ap +aM +ap +aa +aa +aa +aa +aa +aa +aa +ap +aX +aE +aE +aE +aE +aE +aE +aE +aE +aE +aE +aE +aU +aE +ci +bU +ca +bX +bU +cf +bU +ci +cw +cB +cw +cw +cw +cw +cw +cZ +cv +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +cv +eG +cv +ef +ef +ef +ef +ef +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +hs +hs +hs +IA +mR +il +iA +iW +jy +jT +iW +kM +kM +kM +kM +kM +IA +mi +kY +IA +gF +gF +gE +aa +aa +aa +aa +ac +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ad +ah +ah +ah +ah +ad +am +aw +ap +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +bd +bd +bB +bB +bB +bd +bd +bd +cv +cv +cv +cv +cF +cF +cF +da +cv +aa +aa +aa +aa +aa +dd +ab +ab +ab +ab +ab +dd +ab +ab +ab +ab +ab +dd +ab +ab +ab +ab +ab +dd +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +hs +hB +hK +IA +Wb +im +iB +iW +iW +jU +iW +kM +kM +kM +kM +kM +IA +mi +mt +IA +gF +gF +gE +aa +aa +aa +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +ad +ah +ah +ah +ah +ad +am +aw +ap +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +cv +cG +cF +cF +db +cv +aa +aa +aa +aa +aa +ab +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hs +hC +hL +hX +ZN +in +iC +IA +jz +jV +IA +kM +kM +kM +kM +kM +IA +mi +kY +IA +gF +gF +gE +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +ad +ah +ah +ah +ah +ad +aJ +aN +aA +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +cv +cP +cX +cX +dc +cv +aa +aa +aa +aa +aa +ab +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hs +hD +hM +IA +ts +io +iD +iX +jA +jW +IA +kM +kM +kM +kM +kM +IA +mi +kY +IA +gF +gF +gE +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +ad +ad +ad +Xu +Xu +aC +ad +aw +am +aA +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +cv +eG +cv +cv +cv +cv +ac +dd +ab +ab +ab +ab +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hs +hs +hs +IA +IA +IA +IA +IA +jB +zH +IA +IA +Sp +Sp +Sp +lN +IA +mi +kY +IA +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +IA +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ae +ai +am +am +aD +aG +aw +am +ap +aQ +aQ +aS +aa +ab +ac +ac +ap +aw +ap +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aa +aa +ac +aa +aa +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +cv +eG +cv +aa +aa +aa +aa +ab +aa +aa +ac +aa +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hd +jC +jY +kn +kN +kn +lr +lC +lO +lC +mj +kY +gE +mR +mR +mR +mR +nH +mR +ks +mR +kP +nV +mR +mR +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +af +aj +aq +av +aE +aE +aK +ap +ap +aQ +aQ +aQ +aa +ab +aa +aQ +ap +aw +ap +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aa +aa +aa +aa +ac +aa +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +cv +eG +cv +aa +aa +aa +ab +ab +aa +aa +ac +aa +aa +aa +di +di +di +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +gE +gE +gE +gE +gE +gE +gE +gE +jD +jZ +CT +kO +kZ +ls +lD +kY +kY +kY +kY +gE +mR +mR +gE +gE +gE +gE +gE +gE +gE +mR +mR +nW +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ak +ad +aw +ap +ap +ap +ap +aa +aa +aa +aa +aa +ab +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +dj +di +dj +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +cv +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +hq +ht +hE +mR +mR +ip +iE +gE +Re +Re +gE +gE +gE +lt +gE +gE +gE +gE +gE +gE +mR +gE +gE +aa +aa +aa +aa +aa +gE +hd +hd +IA +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +al +ad +aw +ap +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +aa +ap +aw +ap +ap +ap +ap +ac +ac +ac +aQ +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +cv +cR +cv +aa +aa +aa +ab +ac +aa +aa +ac +aa +aa +aa +di +ec +di +aa +aa +aa +ac +di +dj +ac +aa +aa +aa +aa +aa +dd +ac +cv +gm +gt +gz +gL +gP +gS +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +gP +PM +Zt +CT +PM +gP +gP +lu +mR +mR +mR +mR +mR +mR +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +am +ad +ax +ap +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +aa +ap +az +aE +aE +aF +ap +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +cv +eG +cv +ac +dd +ab +ab +ac +aa +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +di +ac +aa +aa +aa +aa +aa +ab +aa +cv +gn +cv +cv +gE +gE +gE +gE +Hz +Hz +Hz +Hz +Hz +Hz +Hz +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +zH +kY +gE +mR +la +lv +gE +gE +gE +gE +gE +gE +gE +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +an +ad +aw +ap +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +ap +ap +ap +ap +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aa +cv +cv +cv +cS +cv +aa +ab +aa +aa +ac +aa +dr +di +di +aa +aa +aa +di +aa +aa +dr +eK +fb +dr +ac +ac +ac +ac +ac +ac +ac +ab +aa +cv +gn +cv +aa +aa +aa +aa +Hz +Hz +qe +DZ +ps +DZ +sf +Hz +Hz +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +gE +zH +kY +gE +kP +lb +lw +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ag +ao +ap +ay +ap +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ap +aV +am +aG +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +aA +am +am +am +am +am +am +of +of +ap +ap +ap +cF +cF +eG +cv +aa +ab +aa +aa +ac +aa +dr +di +dj +aa +aa +aa +di +aa +aa +dr +eL +fc +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +go +cv +aa +aa +Hz +Hz +Hz +rj +KJ +UM +JP +Hq +KJ +xi +Hz +Hz +Hz +aa +aa +aa +aa +aa +aa +ac +aa +aa +gE +zH +kY +gE +IA +lc +IA +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ap +as +am +am +bb +aw +ap +aa +aa +aa +aa +aa +aa +aa +aA +am +av +aE +aE +aE +aE +aE +aE +aU +aE +cC +cw +cw +cT +cv +aa +ab +aa +aa +ac +aa +dr +aa +aa +aa +aa +aa +di +aa +aa +dr +og +fd +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +gn +cv +aa +aa +Hz +DZ +Yt +UC +Bb +tX +up +MV +YT +UC +LF +zN +Hz +aa +aa +aa +aa +aa +aa +ac +ab +aa +gE +zH +kY +gE +IA +ld +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +ac +ab +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ap +aw +ap +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ap +aW +aY +ba +ap +aw +ap +ap +ap +ap +ap +ap +ap +ap +ap +am +aw +ap +ap +ap +ap +ap +ap +ap +ap +ap +cG +cF +eG +cv +aa +ab +aa +aa +ac +aa +dr +aa +aa +aa +aa +aa +di +aa +aa +dr +eN +fe +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +gp +cv +aa +Hz +Hz +Qm +Bq +UC +Nb +GD +sJ +Lu +JP +UC +GE +xK +Hz +aa +aa +aa +aa +aa +aa +aa +ab +aa +gE +zH +kY +gE +IA +mR +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +aX +aE +aE +aE +aE +aE +aE +aE +aE +aE +aE +bw +ap +aa +aa +aa +aa +ac +aa +aa +cv +cH +cF +cU +cv +aa +ab +ac +di +dj +di +dr +aa +aa +aa +aa +di +di +di +di +dr +eO +ff +fq +fy +dj +di +ac +ac +ac +ac +ab +aa +cv +gn +cv +cv +Hz +BR +uf +zR +UC +oz +ux +sJ +TE +Jv +UC +tE +Bf +Hz +aa +aa +aa +aa +aa +aa +aa +ab +aa +gE +zH +kY +gE +gE +le +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +bx +ap +ap +ap +ap +ap +ac +aa +aa +cv +cI +cL +eG +cv +ac +dd +aa +di +di +dn +dr +di +di +di +di +di +dj +di +ej +dr +dr +dr +dr +fz +fI +fI +fV +fV +fV +fV +gd +fV +gk +gq +cv +fA +Hz +AG +oE +DZ +GS +vw +tq +MC +om +JP +UC +DZ +Ad +Hz +aa +aa +aa +aa +aa +aa +aa +ac +aa +gE +zH +kY +gE +gE +lf +lx +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ap +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +ap +aw +am +bO +am +cb +ap +aQ +aa +aa +cv +cJ +cJ +eG +cv +aa +ab +ac +di +dj +di +dr +aa +aa +aa +aa +di +di +di +aa +aa +aa +aa +dr +di +dj +di +ac +ac +ac +ac +ab +aa +cv +eG +cv +fA +Hz +mN +mN +mN +mN +mN +xZ +Me +mN +xZ +xZ +xZ +xZ +Hz +aa +aa +aa +aa +aa +aa +aa +ac +aa +gE +zH +kY +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ap +ap +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +ap +by +cV +bP +am +cc +ap +aQ +aa +aa +cv +cv +cv +cS +cv +aa +ab +aa +aa +ac +aa +dr +aa +aa +aa +aa +aa +di +aa +aa +aa +aa +aa +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +fA +Hz +QB +rL +CI +Ja +mN +DZ +UK +Sq +AW +IR +Ec +pb +Hz +IA +gE +gE +gE +gE +gE +gE +Qe +gE +gE +wC +Kg +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ar +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +aQ +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +ap +am +am +bQ +am +am +ap +aQ +aa +aa +aa +aa +cv +eG +cv +aa +ab +aa +aa +ac +aa +dr +aa +aa +aa +aa +aa +di +aa +aa +aa +aa +aa +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +cv +Hz +SP +xM +CJ +Qs +mN +DZ +oQ +mN +AU +hg +IL +ta +Se +IA +kY +kY +kY +kY +kY +kY +kY +kY +Kg +zH +kY +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +ar +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +ap +am +am +bQ +am +aV +ap +aQ +aa +aa +aa +aa +cv +eH +cv +aa +ab +aa +aa +ac +aa +dr +di +dj +aa +aa +aa +di +aa +aa +aa +dj +di +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +gr +ew +do +Hz +MR +Dm +Dm +ww +Oz +Mh +TI +Ho +Gc +Si +ud +ud +TT +ue +CT +CT +CT +CT +CT +CT +CT +CT +BO +zJ +kY +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +am +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +ap +oe +bD +ap +ap +ap +ap +aQ +aa +aa +aa +aa +cv +eG +cv +aa +ab +aa +aa +ac +aa +dr +di +di +aa +aa +aa +di +aa +aa +aa +di +di +dr +ac +ac +ac +ac +ac +ac +ac +ab +aa +cv +eG +cv +eH +Hz +Ai +LN +Ox +Nj +mN +yy +Mp +xy +qQ +MJ +Nw +EG +CN +IA +gE +gE +gE +gE +gE +gE +gE +gE +gE +IX +gE +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +am +aw +ap +aa +aa +ab +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ap +aw +aA +aa +aa +aa +aa +aa +aa +ac +aa +ap +am +am +bO +am +cd +ap +ac +ac +ac +ac +ac +cv +eG +cv +ac +dd +ab +ab +ac +aa +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +aa +ac +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +eG +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +IA +hl +oa +mR +hF +gE +aa +ab +aa +gE +gB +gE +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +as +aw +ap +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ap +aw +aA +ac +ac +ac +ac +ac +ac +ac +ac +ap +am +am +bR +am +ce +ap +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +aa +ab +ac +aa +aa +ac +aa +aa +aa +di +ed +di +aa +aa +aa +ac +aa +aa +ac +aa +aa +aa +aa +aa +dd +ac +cv +eG +cv +gA +gE +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ac +gE +hm +mR +mR +mR +gE +aa +ac +aa +gE +gB +gE +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +as +aw +ap +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +aA +aa +aa +aa +aa +aa +aQ +aQ +ac +ap +am +am +bO +am +am +ap +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +dj +di +dj +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +gB +gE +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ac +gE +gB +mR +hu +hG +gE +aa +ac +gE +gE +gB +gE +gE +aa +aa +aa +aa +aa +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 +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 +ap +am +aw +ap +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aQ +aQ +ac +ap +bz +am +bO +am +aV +ap +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +aa +ab +ab +aa +aa +ac +aa +aa +aa +di +di +di +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +gC +IA +IA +IA +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +ho +gE +gE +gE +gE +gE +gE +gE +ka +gB +gE +Qe +ac +ac +ac +aa +aa +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 +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 +ap +at +aw +ap +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +ac +ap +ap +ap +ap +ap +ap +ap +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +aa +aa +ab +aa +aa +ac +aa +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +gD +gN +gN +gT +gN +gY +gN +ha +gN +gN +gN +gN +gN +gN +gN +gN +hp +gN +gN +gN +gN +gN +gN +gN +gN +kq +gE +gE +gE +aa +aa +aa +aa +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 +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 +ap +at +aw +ap +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +cv +eG +cv +cv +cv +cv +aa +dd +ab +ab +ab +ab +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +gE +IA +gQ +IA +gE +gE +gE +gE +gE +hd +hd +gE +nX +nY +nZ +nZ +nZ +mR +mR +ob +mR +oc +ip +od +iE +mR +mR +mR +gE +aa +aa +aa +aa +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 +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 +ap +au +aw +ap +ap +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +cv +cW +cw +cw +de +cv +aa +aa +aa +aa +aa +ab +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +gF +IA +IA +IA +aa +aa +aa +aa +aa +aa +aa +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +mR +gE +ac +ac +ac +ac +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 +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 +ap +au +az +aF +ap +ap +ap +ap +ad +ad +ad +ad +ap +ap +ap +ap +ap +ap +ap +aw +ap +ap +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cv +cF +cF +cF +eG +cv +cv +cv +cv +cv +aa +ab +aa +aa +ac +aa +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +cv +eG +cv +cv +cv +aa +aa +aa +aa +aa +aa +aa +bY +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +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 +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 +ac +ac +ac +ap +ap +am +az +aH +aE +aP +aE +aH +aE +aE +aH +aE +aP +aE +aU +aE +aE +aE +bc +aF +ap +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +cv +cv +cv +cP +df +cw +cw +cw +do +cv +aa +dd +ab +ab +ab +ab +ab +dd +ab +ab +ab +ab +ab +dd +ab +ab +ab +ab +ab +dd +aa +cv +eG +gu +fT +cv +aa +aa +aa +aa +gJ +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +aa +aa +ap +aA +ap +ap +ap +ap +ap +ap +am +am +ap +ap +ap +ap +ap +ap +ap +ap +ap +ay +ap +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +ac +aa +cv +eG +cF +cF +cF +cF +eG +cv +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +cv +eG +gv +gG +cv +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +aa +aa +aa +ac +aa +aa +aa +aa +aa +ap +aR +am +aA +aa +aa +aa +ap +aZ +aZ +aZ +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +ac +aa +cv +cR +cv +cv +cv +dk +eG +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +eG +cF +gH +cv +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +aa +aa +aa +ac +aa +aa +aa +aa +aa +ap +aI +aT +aA +aa +aa +aa +ap +aZ +aZ +aZ +ap +ax +ap +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +ac +ac +ac +aa +cv +eG +cv +aa +cv +dl +cW +cw +cw +cw +dK +cw +dm +cw +dy +cw +ew +eP +cw +dy +cw +dm +cw +cw +cw +cw +cw +dK +cw +cw +gs +cF +gI +cv +aa +aa +aa +aa +aa +ac +ac +aa +ac +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +aa +aa +aa +ac +aa +aa +aa +aa +aa +ad +ad +ad +ad +aa +aa +aa +ap +aZ +aZ +aZ +ap +aw +ap +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +ac +aa +ap +ax +ap +aa +cv +cv +cv +cv +cv +cv +eG +cv +cv +cv +cv +ek +cF +eG +cF +cv +cv +cv +cv +cv +cv +cv +cv +eH +cv +cv +cv +gw +gw +cv +aa +aa +aa +aa +ac +ac +aa +aa +ac +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ab +ac +aa +aa +ac +ac +ac +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +aM +ap +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +ac +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +cv +cI +cL +eG +cF +cv +fA +fA +fA +fA +fA +fA +cv +eG +cv +aa +cv +cv +cv +cv +aa +aa +aa +ac +ac +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +ac +aa +ac +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aG +aw +ap +ap +ap +ap +ap +ap +ap +ap +ap +aa +aa +aa +aa +ac +aa +aa +ab +ab +ab +ab +ac +aa +ap +ay +ap +aa +aa +aa +aa +aa +aa +cv +eG +cv +aa +aa +ef +cJ +cJ +eQ +fg +ef +fA +fA +fA +fA +fA +fA +ch +ge +ch +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +gE +mR +gE +ac +ac +ac +aa +aa +aa +aa +aa +KB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +am +az +aU +aE +aP +aE +aU +aE +aE +aF +ap +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +ac +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +cv +dL +cv +aa +aa +ef +ef +ef +ef +ef +ef +fB +fB +fB +fB +fB +fB +ch +dN +ch +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +gE +kr +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aI +am +ap +ap +ap +ap +ap +ap +am +aw +ap +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +cv +cv +cv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +fD +ch +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +aa +aa +aa +aa +ap +am +aw +ap +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +ap +aw +ap +aa +aa +aa +aa +aa +aa +ch +dM +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +gE +Yf +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +am +aw +ap +ap +ap +ap +ap +ad +ad +ad +ap +ap +ap +ap +ap +ap +ap +aw +ap +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +gE +gE +mR +gE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +am +az +aU +aE +aP +aE +aU +aE +cg +cj +aH +aE +aP +aE +aH +aE +aE +aN +ap +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +gE +gE +mR +kt +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ap +ap +ap +ap +ap +ap +ap +ap +am +aI +by +ad +ap +ap +ap +ap +ap +ap +ap +ap +aa +aa +aa +aa +aa +aa +ch +dO +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bY +aa +ac +hd +jE +mR +ku +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +ac +ac +ad +ad +ad +ck +ad +aZ +aZ +ap +aa +aa +aa +aa +aa +aa +aa +aa +ch +ch +ch +ch +dP +ch +ch +ch +ct +ct +ct +ct +ct +ct +ct +ct +fR +aa +aa +aa +ch +dN +ch +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +RX +aQ +aQ +aQ +aQ +aQ +aa +aa +aa +aa +aa +aa +aa +aa +hd +jF +gQ +IA +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(141,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 +ac +ac +aa +aa +aa +ap +am +ap +aZ +aZ +ap +aa +aa +aa +aa +aa +aa +aa +aa +ch +ds +cm +dD +dN +cm +cm +cm +ct +el +ex +ex +ct +el +ex +ex +ct +aa +aa +aa +ch +dN +ch +ch +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +aQ +Ay +aQ +ac +aa +aa +aa +aa +aa +aa +aa +aa +IA +IA +IA +IA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(142,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 +ac +ac +aa +aa +aa +aa +ap +cl +ap +aZ +aZ +ap +aa +aa +aa +aa +aa +aa +aa +aa +ch +dt +cm +cm +dN +cm +cm +cm +ct +em +ex +ex +ct +em +ex +ex +ct +aa +aa +aa +ch +fG +gh +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +XG +aQ +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(143,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 +ac +ac +aa +aa +aa +aa +aa +ch +cm +ap +aZ +aZ +ap +aa +aa +aa +aa +aa +aa +aa +aa +ch +du +dw +dD +dN +cm +cm +cm +ct +em +ex +ex +ct +em +ex +ex +ct +aa +aa +aa +ch +cm +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aQ +aQ +aQ +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(144,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 +ac +ac +aa +aa +aa +aa +aa +aa +ch +cn +ap +ap +ap +ap +aa +aa +aa +aa +aa +aa +aa +aa +ch +ch +ch +ch +dQ +dA +dA +dA +ct +en +ey +eR +ct +en +ey +eR +ct +aa +aa +aa +ch +cm +dN +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +aQ +aQ +aQ +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(145,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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +ch +cm +cm +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dv +cm +dD +dN +cm +cm +dx +ch +eo +cm +eS +cm +fr +cm +eS +ch +aa +aa +aa +ch +cm +dN +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aQ +aQ +aQ +RX +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(146,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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +cm +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +cm +cm +dR +cm +cm +ee +eg +ep +ee +eT +fh +eT +fh +fJ +ch +aa +aa +aa +ch +cm +dN +cm +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(147,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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +cm +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dv +cm +cm +cm +cm +cm +dx +ch +cn +cm +cm +cm +fs +cm +eS +ch +aa +aa +aa +ch +ch +dN +cm +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(148,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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +cm +cm +cD +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +ch +dA +dA +cm +cm +dE +dx +ch +cm +cm +cm +dA +ft +ex +ft +ch +aa +aa +aa +aa +ch +dN +cs +cm +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(149,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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +cm +cm +cD +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dw +dx +dx +cm +dx +dZ +dE +ch +eq +cm +cm +dA +ex +ex +ex +ch +aa +aa +aa +aa +ch +fG +fK +fK +gh +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(150,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 +ab +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +co +cs +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dx +dw +dE +cm +dx +dZ +dw +ch +er +cm +eU +ct +ex +ex +ex +ch +aa +aa +aa +aa +ch +ch +cp +cm +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(151,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 +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cp +cs +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dw +dw +dw +cm +dw +dE +dZ +ch +es +cm +cm +ct +ex +ex +ex +ch +aa +aa +aa +aa +aa +ch +co +cm +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(152,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 +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cq +cs +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +ch +ch +ch +dS +ch +ch +ch +ch +ch +cD +ch +ch +ch +ch +ch +ch +aa +aa +aa +aa +aa +ch +cq +cm +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(153,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 +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bY +ac +ch +ch +ch +cx +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dT +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +ch +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(154,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 +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(155,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 +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ch +cy +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(156,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 +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(157,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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +cn +ch +cK +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(158,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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +cm +cm +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +fD +ch +aa +ac +ac +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(159,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 +ct +cm +cm +cm +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +cm +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +ac +ac +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(160,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 +ct +cz +cE +cm +cM +cm +cy +cm +dg +cm +cm +cm +cm +cm +cm +cm +cm +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +ge +ch +aa +aa +aa +ac +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(161,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 +ct +ct +ct +ct +ct +ct +ch +ch +ch +ch +ch +ch +ch +ch +ch +eZ +cm +cm +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(162,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 +ac +aa +aa +aa +aa +ac +aa +aa +aa +ch +ch +cm +cm +cm +cm +cm +cm +cm +cm +cm +cm +cm +es +ch +ch +ch +ch +ch +ch +ch +ct +ct +fD +ct +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(163,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 +ac +ab +ab +ab +ab +ab +aa +aa +aa +aa +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +fu +fC +fK +fK +fK +fK +fZ +fK +gf +fK +fY +fK +gx +fZ +fK +gf +fK +fY +fK +fK +fK +fK +fK +fK +fK +fK +gh +ch +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(164,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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +fv +dN +cm +ch +ch +ch +ch +ch +ch +ch +ct +cz +cE +ct +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +hj +ch +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(165,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 +ch +ch +dN +ch +ch +aa +aa +aa +aa +aa +aa +ct +ct +ct +ct +aa +aa +ac +aa +aa +aa +aa +aa +ch +he +he +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(166,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ch +he +he +ch +ge +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(167,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ch +he +he +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(168,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ch +ch +ct +ct +hj +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(169,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 +ac +ac +ac +ac +ac +ac +ch +dN +ch +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ct +hh +dN +cK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,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 +ac +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ct +cz +dN +cK +aa +aa +bY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,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 +ab +ab +ab +ab +ab +ac +ac +ch +dN +ch +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ct +cm +dN +cK +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +ch +ch +ch +ch +ch +ch +aa +aa +ct +ct +fD +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dv +dv +oh +cm +cm +ch +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,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 +bY +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +aa +aa +ch +dv +dv +cm +ch +dA +ch +aa +aa +aa +ch +ge +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,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 +cK +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +ac +ac +ch +cm +cm +cm +cm +cm +ch +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,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 +cK +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aQ +aQ +aa +aa +cK +cm +cm +cm +ch +cm +ch +ch +ch +ch +ch +hj +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,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 +cK +dN +ch +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +cK +cm +cM +cm +gZ +hb +fK +fK +fK +fK +fK +hk +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,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 +ac +ch +dN +ch +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +cK +cm +ch +cm +ch +dA +ch +ch +ch +ch +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,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 +ch +dN +ch +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ch +cm +dA +cm +hi +cm +ch +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,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 +ch +dN +ch +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ch +gU +dA +cm +cm +cm +ch +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,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 +ac +ac +ac +ch +dN +ch +aa +aa +aa +ac +ab +ab +ab +ab +ab +aa +aa +aa +ch +hc +cm +cm +cm +cm +ch +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ch +ch +ch +ch +ch +ch +ch +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +fD +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,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 +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +ge +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,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 +yb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +eV +fi +ct +fD +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ch +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,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 +ct +fj +ct +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +ct +ct +ct +ct +hj +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,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 +ct +cm +ct +ge +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +cz +cm +cs +cs +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,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 +ct +fk +ct +dN +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +cn +fC +fK +fK +hf +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,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 +ez +ct +fl +ct +fF +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ct +cm +dN +ct +ct +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,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 +ez +eW +fm +fw +dN +fL +ch +ch +ch +ch +ch +ch +ct +ct +ct +cK +cK +ch +ch +ch +ch +ch +ch +ch +ct +cm +dN +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,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 +ez +eX +fn +cm +fG +fM +fS +fK +fY +fK +gf +fK +fZ +gl +fK +fK +fK +gO +fK +gf +fK +gO +fK +fK +fK +fK +hf +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,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 +ez +ct +fo +NK +NK +ch +ct +ch +ch +ch +ch +ch +ct +cz +ct +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,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 +ct +fp +cm +cm +fN +ct +aa +aa +aa +aa +aa +ct +ct +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,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 +ct +fp +fp +fp +fp +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,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 +ct +fp +fp +fp +fp +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,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 +ct +fp +fp +fp +fp +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,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 +ct +ct +ct +ct +ct +ct +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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/exodus/exodus-2.dmm b/maps/exodus/exodus-2.dmm new file mode 100644 index 00000000000..af6ca597d3e --- /dev/null +++ b/maps/exodus/exodus-2.dmm @@ -0,0 +1,136030 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Briefing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"aab" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Firing Range" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"aac" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"aad" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + id_tag = "detdoor"; + name = "Detective" + }, +/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 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/detectives_office) +"aae" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/flame/candle{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aaf" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"aag" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/simulated/floor/airless, +/area/space) +"aah" = ( +/turf/simulated/wall/prepainted, +/area/space) +"aai" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Fore" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"aaj" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/airless, +/area/space) +"aak" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/space) +"aal" = ( +/obj/structure/grille/broken, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/airless, +/area/space) +"aam" = ( +/obj/structure/grille, +/turf/space, +/area/space) +"aan" = ( +/obj/structure/grille/broken, +/turf/space, +/area/space) +"aao" = ( +/obj/item/clothing/suit/ianshirt, +/turf/simulated/floor/airless, +/area/space) +"aap" = ( +/turf/simulated/floor/airless, +/area/space) +"aaq" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/space, +/area/space) +"aar" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aas" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolarnorth"; + name = "Fore Solar Array" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aat" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"aau" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/turf/space, +/area/shuttle/escape_pod_3) +"aav" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id_tag = "auxsolarnorth"; + name = "Fore Solar Array" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aaw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aax" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/space) +"aay" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/range) +"aaz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaA" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/prepainted, +/area/space) +"aaB" = ( +/obj/machinery/camera/network/security{ + c_tag = "Armory Exterior"; + dir = 4 + }, +/turf/space, +/area/space) +"aaC" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaD" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/range) +"aaH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/range) +"aaI" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/space, +/area/space) +"aaJ" = ( +/obj/item/stack/cable_coil/random, +/turf/space, +/area/space) +"aaK" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"aaL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaO" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Range Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaQ" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaS" = ( +/obj/structure/closet/toolcloset, +/obj/item/clothing/head/hardhat/dblue, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aaT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/warden) +"aaU" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaV" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaW" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/item/storage/box/ammo/practiceshells{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaX" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/range) +"aaY" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aaZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"aba" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abb" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/security_starboard) +"abc" = ( +/obj/structure/lattice, +/obj/structure/grille/broken{ + dir = 4 + }, +/turf/space, +/area/space) +"abd" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/foresolar) +"abe" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abf" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/security_port) +"abg" = ( +/obj/structure/table/rack, +/obj/item/gun/projectile/shotgun/pump, +/obj/item/gun/projectile/shotgun/pump, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/tactical) +"abi" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"abj" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abk" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/security{ + c_tag = "Security - Firing Range East"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abn" = ( +/obj/item/storage/box/lights/mixed, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"abo" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abp" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"abq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/range) +"abr" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/foresolar) +"abs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abt" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"abu" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abv" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/ammo/beanbags{ + pixel_y = 8 + }, +/obj/item/storage/box/ammo/stunshells, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abw" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/turf/space, +/area/space) +"abx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"aby" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/ionrifle, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abz" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "brig_solar_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/foresolar) +"abA" = ( +/obj/machinery/camera/network/security{ + c_tag = "Armoury - Tactical Equipment" + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/box/ammo/flashshells{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abB" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/teargas, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"abC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abD" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abE" = ( +/obj/machinery/camera/network/security{ + c_tag = "Security - Firing Range West"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abG" = ( +/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/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/range) +"abH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abI" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abK" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abL" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/range) +"abN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"abO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abP" = ( +/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/steel_grid, +/area/exodus/security/range) +"abQ" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abR" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"abT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"abU" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abV" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"abX" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "brig_solar_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/foresolar) +"abY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"abZ" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "brig_solar_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aca" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"acb" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/foresolar) +"acc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"acd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/security/meeting) +"ace" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"acf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "brig_solar_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + frequency = 1380; + id_tag = "brig_solar_airlock"; + pixel_y = -25; + tag_airpump = "brig_solar_pump"; + tag_chamber_sensor = "brig_solar_sensor"; + tag_exterior_door = "brig_solar_outer"; + tag_interior_door = "brig_solar_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "brig_solar_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Tactical Equipment" + }, +/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/techfloor/grid, +/area/exodus/security/tactical) +"ach" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"aci" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "brig_solar_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ack" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/security/main) +"acl" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"acm" = ( +/obj/item/stool/padded, +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"acn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/shuttle_landmark/escape_pod/start/pod3, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_3) +"aco" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/meeting) +"acp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/armoury) +"acq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/main) +"acr" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"act" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"acu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Access"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"acv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acw" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"acx" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acy" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"acz" = ( +/obj/structure/cable, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acA" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"acB" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id_tag = "auxsolarnorth"; + name = "Fore Solar Control" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/foresolar) +"acC" = ( +/obj/structure/sign/goldenplaque, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"acD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"acE" = ( +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acG" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"acH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"acI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"acJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/item/crowbar/brace_jack, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"acK" = ( +/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/exodus/security/armoury) +"acL" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acM" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"acN" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/screwdriver{ + pixel_y = 15 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/table/standard, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acR" = ( +/obj/structure/table/standard, +/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/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"acS" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acT" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"acU" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acW" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"acY" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/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_grid, +/area/exodus/security/meeting) +"acZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"ada" = ( +/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/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"adb" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"adc" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"add" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ade" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adf" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "Armoury"; + name = "Emergency Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/armoury) +"adg" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adh" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adj" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adl" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "dorm_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/space, +/area/space) +"adm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ado" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/item/storage/box, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adq" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"ads" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adu" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/megaphone, +/obj/item/device/radio/off, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"adv" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adw" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/helmet/ablative, +/obj/item/clothing/head/helmet/ablative, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"adx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"ady" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adA" = ( +/obj/machinery/flasher/portable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"adC" = ( +/obj/machinery/flasher/portable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adD" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"adE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adG" = ( +/obj/structure/table/rack, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/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 = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adI" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/meeting) +"adK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"adM" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/ballistic, +/obj/item/clothing/head/helmet/ballistic, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"adN" = ( +/obj/machinery/button/blast_door{ + id_tag = "Armoury"; + name = "Armoury Access"; + pixel_x = -1; + pixel_y = -28; + req_access = list("ACCESS_ARMORY") + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"adO" = ( +/obj/machinery/door/airlock/external{ + locked = 1; + name = "External Construction Airlock" + }, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"adP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adR" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"adS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"adT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"adU" = ( +/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/steel_grid, +/area/exodus/security/main) +"adV" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"adZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Briefing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"aea" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "HoS Office"; + sort_type = "HoS Office" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"aeb" = ( +/obj/structure/table/standard, +/obj/item/folder/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aec" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"aed" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aee" = ( +/obj/structure/sign/warning/internals_required{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aef" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/device/radio/headset/headset_sec, +/obj/item/device/radio/headset/headset_sec, +/obj/item/device/radio/headset/headset_sec, +/obj/item/device/radio/headset/headset_sec, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"aeg" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeh" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/storage/box/cdeathalarm_kit, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"aei" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/bombclosetsecurity, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aej" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Equipment North"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aek" = ( +/obj/machinery/light, +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"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/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"aem" = ( +/obj/machinery/button/blast_door{ + id_tag = "Armoury"; + name = "Emergency Access"; + pixel_x = -28; + pixel_y = 4; + req_access = list("ACCESS_ARMORY") + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aen" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeo" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aep" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeq" = ( +/obj/machinery/requests_console{ + department = "Security"; + name = "Security RC"; + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aer" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/fore) +"aes" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Armoury Section" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/warden) +"aet" = ( +/obj/structure/window/reinforced, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aev" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aew" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"aex" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aey" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aez" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeA" = ( +/obj/effect/floor_decal/corner/red, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-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/steel_grid, +/area/exodus/security/main) +"aeC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/meeting) +"aeD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeE" = ( +/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/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/warden) +"aeG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/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/steel_grid, +/area/exodus/security/meeting) +"aeH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeI" = ( +/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{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aeJ" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aeK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"aeL" = ( +/obj/machinery/barrier, +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/obj/machinery/camera/network/security{ + c_tag = "Armoury" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeM" = ( +/obj/machinery/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeN" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeO" = ( +/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/exodus/security/warden) +"aeP" = ( +/obj/structure/table/rack{ + pixel_y = 6 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Sub-Armory Storage" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Sub-Armory Storage" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "subarmory"; + name = "Sub-Armory Storage" + }, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aeR" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aeS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/security_starboard) +"aeT" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeU" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeV" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aeW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/security_port) +"aeX" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aeY" = ( +/obj/machinery/button/blast_door{ + id_tag = "subarmory"; + name = "Sub-Armory Storage control"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"aeZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/secure_closet/security, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afa" = ( +/obj/structure/table/standard, +/obj/item/folder/red, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afc" = ( +/obj/structure/table/standard, +/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/steel_grid, +/area/exodus/security/meeting) +"afd" = ( +/obj/machinery/camera/network/security{ + c_tag = "Security - Briefing"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/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_grid, +/area/exodus/security/meeting) +"aff" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hos) +"afg" = ( +/obj/machinery/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afi" = ( +/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_grid, +/area/exodus/security/warden) +"afj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afl" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afm" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/space, +/area/space) +"afn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"afp" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Sub-Armory" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/warden) +"afs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aft" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Security"; + sort_type = "Security" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afu" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donut, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afw" = ( +/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/exodus/security/meeting) +"afx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afy" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afz" = ( +/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/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afA" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/xray/security{ + c_tag = "Security Escape Pod"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/shuttle_landmark/escape_pod/start/pod1, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_1) +"afC" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "dorm_outer"; + name = "Dormitory External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"afD" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "solar_chapel_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"afE" = ( +/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/steel_grid, +/area/exodus/security/warden) +"afF" = ( +/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/tiled/steel_grid, +/area/exodus/security/warden) +"afG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + 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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"afI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/tactical) +"afJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afO" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/armband, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"afP" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_3) +"afQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"afR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"afS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"afT" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"afV" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afW" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_chapel_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarstarboard) +"afX" = ( +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afY" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"afZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aga" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agb" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agd" = ( +/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/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"age" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/meeting) +"agf" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agg" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"agh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 1; + frequency = 1380; + id_tag = "escape_pod_3"; + pixel_y = -25; + tag_door = "escape_pod_3_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_3) +"agi" = ( +/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/exodus/security/meeting) +"agj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agl" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 8; + frequency = 1380; + id_tag = "escape_pod_3_berth"; + pixel_x = 25; + pixel_y = 32; + tag_door = "escape_pod_3_berth_hatch" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agm" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ago" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agp" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agq" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_3_berth_hatch"; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"agr" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_3_hatch"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_3) +"ags" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/stunrevolver, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"agt" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"agu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"agw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agx" = ( +/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/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"agy" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/raisins, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"agC" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"agD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig) +"agE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agF" = ( +/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/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agG" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/effect/floor_decal/corner/red, +/obj/item/stack/package_wrap, +/obj/item/storage/box, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"agJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hos) +"agK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/detectives_office) +"agL" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/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/crowbar, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agN" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon/SecurityD, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/security/meeting) +"agO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/hos) +"agQ" = ( +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"agR" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "solar_chapel_airlock"; + pixel_x = 25; + tag_airpump = "solar_chapel_pump"; + tag_chamber_sensor = "solar_chapel_sensor"; + tag_exterior_door = "solar_chapel_outer"; + tag_interior_door = "solar_chapel_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "solar_chapel_sensor"; + master_tag = null; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "solar_chapel_pump" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"agS" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_3) +"agT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/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/plating, +/area/exodus/maintenance/security_starboard) +"agU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"agV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"agW" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig) +"agX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Warden's Office" + }, +/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/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/techfloor/grid, +/area/exodus/security/warden) +"agY" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/flashlight/flare, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"agZ" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Security Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/meeting) +"aha" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/processing) +"ahb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"ahc" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + name = "Head of Security RC"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahe" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"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/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahg" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"ahh" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/interrogation) +"ahj" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"ahl" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahm" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/folder/red, +/obj/item/folder/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aho" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/processing) +"ahp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/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/steel_grid, +/area/exodus/security/brig/processing) +"ahq" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ahr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ahs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aht" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/obj/item/gun/energy/taser, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ahu" = ( +/obj/machinery/photocopier, +/obj/machinery/newscaster{ + pixel_x = -30; + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahv" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ahx" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ahy" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"ahz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/stamp/denied{ + pixel_x = 5 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"ahB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"ahC" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/material/clipboard, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ahD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ahF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahG" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahH" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/keycard_auth{ + pixel_x = 30 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ahJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahK" = ( +/turf/simulated/floor, +/area/exodus/security/brig) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ahM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/shuttle_landmark/escape_pod/start/pod2, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_2) +"ahN" = ( +/obj/structure/cable/green{ + 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 = 5 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ahO" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ahQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ahR" = ( +/obj/structure/window/reinforced, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ahS" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"ahT" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ahU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/interrogation) +"ahV" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ahW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Interrogation" + }, +/obj/item/device/radio/intercom/interrogation{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ahX" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ahY" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ahZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"aia" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aib" = ( +/obj/item/device/eftpos{ + eftpos_name = "Brig EFTPOS scanner" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Warden's Desk" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aid" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aie" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/security/prison/restroom) +"aif" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aig" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_chapel_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarstarboard) +"aih" = ( +/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/exodus/security/warden) +"aii" = ( +/obj/item/hand_labeler, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Warden's Desk" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aij" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"aik" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ail" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aim" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ain" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aip" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"air" = ( +/obj/structure/table/woodentable/walnut, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ais" = ( +/obj/structure/table/woodentable/walnut, +/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/carpet, +/area/exodus/crew_quarters/heads/hos) +"ait" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiu" = ( +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/device/flashlight, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aiv" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiw" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aix" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aiy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiA" = ( +/obj/machinery/camera/network/security{ + c_tag = "Security - Interrogation Observation"; + dir = 4 + }, +/obj/item/device/radio/intercom/interrogation{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aiB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Riot Control" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"aiC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"aiD" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"aiE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"aiF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/brig/interrogation) +"aiG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"aiH" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/item/device/taperecorder, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/exodus/security/brig/interrogation) +"aiI" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"aiJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"aiK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiL" = ( +/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/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiN" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aiO" = ( +/obj/machinery/vending/security{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aiP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/woodentable/walnut, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiQ" = ( +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"aiR" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"aiT" = ( +/obj/structure/table/standard, +/obj/machinery/camera/network/security{ + c_tag = "Security - Processing"; + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/camera, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiU" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/device/megaphone, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"aiV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiW" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aiX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aiY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/interrogation) +"aiZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"aja" = ( +/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" + }, +/obj/structure/grille, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/brig/interrogation) +"ajb" = ( +/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{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/interrogation) +"ajc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/lawoffice) +"ajd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"aje" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ajf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/machinery/button/alternate/door{ + id_tag = "HoSdoor"; + name = "Office Door"; + pixel_x = -36; + pixel_y = 29 + }, +/obj/machinery/button/windowtint{ + pixel_x = -26; + pixel_y = 30 + }, +/obj/machinery/button/blast_door{ + id_tag = "Secure Gate"; + name = "Brig Lockdown"; + pixel_x = -36; + pixel_y = 39 + }, +/obj/machinery/button/blast_door{ + id_tag = "Prison Gate"; + name = "Security Lockdown"; + pixel_x = -24; + pixel_y = 39 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hos) +"ajg" = ( +/obj/structure/table/standard, +/obj/item/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Evidence Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ajh" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/brig/processing) +"ajj" = ( +/obj/machinery/computer/prisoner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"ajk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ajl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ajm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Armoury - Secure"; + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"ajn" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Equipment South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "brigobs"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajr" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ajs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "brigobs"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"aju" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "brigobs"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajv" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/lobby) +"ajw" = ( +/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/steel_grid, +/area/exodus/security/brig/processing) +"ajx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajy" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajz" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ajA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_port) +"ajB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/item/wrench, +/turf/simulated/floor, +/area/exodus/security/brig) +"ajC" = ( +/obj/machinery/door/window/westright, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ajD" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "solar_chapel_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/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/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"ajE" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ajF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"ajG" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"ajH" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"ajI" = ( +/obj/structure/table/standard, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/main) +"ajK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - HoS' Office"; + dir = 1 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajL" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Forensic Office Fore" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"ajM" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajN" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dorm_sensor"; + pixel_x = 25; + pixel_y = -8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"ajO" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajP" = ( +/obj/structure/closet/secure_closet/hos, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"ajR" = ( +/obj/structure/table/standard, +/obj/item/storage/box/evidence, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"ajS" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Warden's Office" + }, +/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/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/warden) +"ajU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/main) +"ajV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/main) +"ajW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajX" = ( +/obj/machinery/light{ + dir = 1 + }, +/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 = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajY" = ( +/obj/machinery/alarm{ + 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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ajZ" = ( +/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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aka" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"akc" = ( +/obj/machinery/door/firedoor, +/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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ake" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akf" = ( +/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/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akg" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -14; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"aki" = ( +/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 = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akk" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/processing) +"akl" = ( +/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_grid, +/area/exodus/security/brig) +"akm" = ( +/obj/machinery/light{ + dir = 1 + }, +/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 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ako" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/detectives_office) +"akp" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"akq" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"akr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aks" = ( +/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/steel_grid, +/area/exodus/security/brig) +"akt" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aku" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation Observation" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/interrogation) +"aky" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bookcase, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akC" = ( +/obj/structure/table/rack, +/obj/item/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/obj/item/storage/briefcase{ + pixel_x = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akD" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/device/flash, +/obj/item/clothing/glasses/sunglasses, +/obj/item/reagent_containers/spray/pepper, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"akF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"akG" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/material/ashtray/plastic, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/item/clothing/gloves/forensic, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"akH" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"akI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akL" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akM" = ( +/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/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akN" = ( +/obj/machinery/door_timer/cell_3{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akO" = ( +/obj/machinery/button/blast_door{ + id_tag = "Cell 3"; + name = "Cell 3 Door"; + pixel_x = -1; + pixel_y = -28 + }, +/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/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akP" = ( +/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_grid, +/area/exodus/security/brig) +"akQ" = ( +/obj/machinery/light, +/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/tiled/steel_grid, +/area/exodus/security/brig) +"akR" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/interrogation) +"akS" = ( +/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 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akT" = ( +/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/carpet, +/area/exodus/security/detectives_office) +"akU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable/walnut, +/obj/machinery/button/alternate/door{ + id_tag = "detdoor"; + name = "Office Door" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"akV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig Center"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"akX" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"akZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ala" = ( +/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/exodus/security/brig) +"alb" = ( +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alc" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ald" = ( +/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/steel_grid, +/area/exodus/security/brig) +"ale" = ( +/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 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/computer/guestpass{ + pixel_y = -29 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig East"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"alg" = ( +/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/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ali" = ( +/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_grid, +/area/exodus/security/brig) +"alj" = ( +/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/steel_grid, +/area/exodus/security/brig) +"alk" = ( +/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/lino, +/area/exodus/security/detectives_office) +"all" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8; + icon_state = "warningcorner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"alm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"aln" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"alo" = ( +/obj/structure/table/rack, +/obj/item/flame/lighter/random, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"alp" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"alq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/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/techfloor/grid, +/area/exodus/security/brig/interrogation) +"alr" = ( +/obj/machinery/atmospherics/unary/tank/nitrous_oxide{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"als" = ( +/obj/machinery/door/airlock/external{ + locked = 1; + name = "External Construction Airlock" + }, +/obj/item/taperoll/engineering/applied, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_starboard) +"alt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alu" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"alv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alw" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/reagent_containers/food/drinks/flask/detflask, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"aly" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alz" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"alC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alD" = ( +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alE" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/camera, +/obj/item/device/camera, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"alH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Processing" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig/processing) +"alJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"alK" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/item/folder/red, +/obj/item/folder/blue, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"alL" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"alM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alN" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"alO" = ( +/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/window/brigdoor/northleft, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"alP" = ( +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"alQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"alR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Processing" + }, +/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/techfloor/grid, +/area/exodus/security/brig/processing) +"alS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alT" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"alV" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"alW" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/prison) +"alX" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"alY" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/brig/processing) +"alZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/warden) +"ama" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/door/window/brigdoor/eastleft, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ame" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/westright, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amh" = ( +/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/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ami" = ( +/turf/simulated/wall/prepainted, +/area/exodus/lawoffice) +"amj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/button/alternate/door{ + id_tag = "prisonentry"; + name = "Entry Doors"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/button/alternate/door{ + id_tag = "prisonexit"; + name = "Exit Doors"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/button/flasher{ + id_tag = "permentryflash"; + name = "entry flash"; + pixel_x = -26; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amk" = ( +/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/steel_grid, +/area/exodus/security/brig) +"aml" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/main) +"amm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the brig foyer."; + id_tag = "BrigFoyer"; + name = "Brig Foyer Doors"; + pixel_x = 28; + pixel_y = -15 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"amo" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"amp" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"amq" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ams" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_x = -25 + }, +/obj/item/material/clipboard, +/obj/item/hand_labeler, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amu" = ( +/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/steel_grid, +/area/exodus/security/brig) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"amw" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"amx" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Substation" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"amy" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"amz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amB" = ( +/obj/structure/closet/wardrobe/lawyer_black, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amC" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amD" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amE" = ( +/obj/item/stool/padded, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"amF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"amG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"amH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/power/sensor{ + id_tag = "Security Subgrid"; + name = "Powernet Sensor - Security Subgrid"; + name_tag = "Security Subgrid" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"amI" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"amJ" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"amK" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"amL" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"amM" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"amN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig Toxin Control"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/security/brig) +"amO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"amP" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"amQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amU" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/camera/network/security{ + c_tag = "Security - Prison Processing"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"amV" = ( +/obj/machinery/flasher{ + id_tag = "Cell 3"; + pixel_x = -28 + }, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amW" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Cell 3"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amX" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amY" = ( +/obj/machinery/flasher{ + id_tag = "permentryflash"; + name = "Floor mounted flash" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"amZ" = ( +/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/button/flasher{ + id_tag = "permflash"; + name = "Brig flashes"; + pixel_y = -27 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ana" = ( +/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/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"anb" = ( +/obj/machinery/button/flasher{ + id_tag = "permflash"; + name = "Brig flashes"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "brigobs"; + name = "observation shutters"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "Secure Gate"; + name = "Brig Lockdown"; + pixel_x = -26; + pixel_y = -4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"and" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/security) +"ane" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Prison Observation"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ang" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/lawoffice) +"anh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"ani" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + 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_tag = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"ank" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "Cell 2"; + name = "Cell Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"anm" = ( +/obj/structure/table/reinforced, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ann" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ano" = ( +/obj/item/storage/secure/safe{ + pixel_x = -23 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"anp" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/walnut, +/obj/machinery/button/alternate/door{ + id_tag = "detdoor"; + name = "Office Door" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"anr" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ans" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"ant" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"anu" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"anv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA\\Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/security_port) +"anw" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anx" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "prisonexit"; + name = "Brig Exit" + }, +/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/techfloor/grid, +/area/exodus/security/prison) +"any" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/fore) +"anz" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "BrigFoyer"; + name = "Security Wing" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"anA" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/security/brig) +"anB" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anC" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"anD" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"anE" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anF" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"anG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/detectives_office) +"anH" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"anI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anJ" = ( +/obj/machinery/door_timer/cell_6{ + id_tag = "Cell 2"; + name = "Cell 2"; + pixel_x = 32 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"anK" = ( +/obj/machinery/door/blast/regular{ + id_tag = "Cell 3"; + name = "Cell Door" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anL" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "prisonentry"; + name = "Brig Entry" + }, +/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/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"anM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"anN" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"anO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anP" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"anQ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/security) +"anR" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"anS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"anT" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/material/ashtray/plastic{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anU" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"anV" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anW" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"anX" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/evahallway) +"anY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"anZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aob" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Holodeck North"; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aoc" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Security" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"aod" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/exodus/security/detectives_office) +"aof" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flash, +/obj/item/reagent_containers/spray/pepper, +/obj/item/clothing/glasses/sunglasses, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aog" = ( +/obj/machinery/requests_console{ + department = "Security"; + name = "Security RC"; + pixel_x = 30 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aoi" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Chamber"; + dir = 1 + }, +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + input_level = 125000; + output_attempt = 1; + output_level = 100000 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"aoj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/sleep/cryo) +"aok" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aol" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aom" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aon" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/security) +"aoo" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxstarboard) +"aop" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"aoq" = ( +/turf/unsimulated/mask, +/area/space) +"aor" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aos" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "BrigFoyer"; + name = "Security Wing" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/brig) +"aot" = ( +/obj/machinery/button/blast_door{ + id_tag = "Cell 2"; + name = "Cell 2 Door"; + pixel_x = 30; + pixel_y = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aou" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Cell 2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aov" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aow" = ( +/obj/machinery/computer/arcade, +/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/camera/network/prison{ + c_tag = "Security - Common Brig Northwest" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aox" = ( +/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_grid, +/area/exodus/security/prison) +"aoy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoz" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoA" = ( +/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/exodus/security/prison) +"aoB" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/security) +"aoD" = ( +/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/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aoE" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aoF" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison) +"aoG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoH" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/dormitory) +"aoI" = ( +/obj/structure/table/standard, +/obj/item/material/minihoe, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aoJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aoK" = ( +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Internal Affairs" + }, +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aoL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/standard, +/obj/machinery/camera/network/security{ + c_tag = "Security - Lobby"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/westleft, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aoN" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aoO" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -2 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aoP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoR" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aoS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aoT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aoU" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoV" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aoW" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aoX" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"aoY" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aoZ" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"apb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"apc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"apd" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console{ + department = "Internal Affairs"; + name = "Internal Affairs RC"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ape" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"apf" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apg" = ( +/obj/structure/disposalpipe/segment, +/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/door/airlock/maintenance{ + name = "Dormitory\\Security Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aph" = ( +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/exodus/maintenance/exterior) +"api" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/security/detectives_office) +"apj" = ( +/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/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apk" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apl" = ( +/obj/structure/cable, +/obj/effect/engine_setup/smes, +/obj/machinery/power/smes/buildable/preset/exodus/engine_main{ + RCon_tag = "Engine - Main" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_smes) +"apm" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineEmitterPortWest"; + name = "Engine Room Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/empty_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"apn" = ( +/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/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apo" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"app" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/eastright, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"apr" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aps" = ( +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apu" = ( +/obj/random/obstruction, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"apv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"apx" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "dorm_airlock"; + name = "Dormitory Airlock Console"; + pixel_x = 25; + tag_airpump = "dorm_pump"; + tag_chamber_sensor = "dorm_sensor"; + tag_exterior_door = "dorm_outer"; + tag_interior_door = "dorm_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apz" = ( +/obj/machinery/flasher{ + id_tag = "permflash"; + name = "Floor mounted flash" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apA" = ( +/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/exodus/security/prison) +"apB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"apC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_1"; + pixel_x = -25; + tag_door = "escape_pod_1_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_1) +"apD" = ( +/turf/simulated/wall/prepainted, +/area/exodus/gateway) +"apE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"apF" = ( +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"apG" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"apH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"apI" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apJ" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/device/scanner/reagent, +/obj/item/device/scanner/spectrometer, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"apL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/northleft{ + name = "Forensics Area" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/solitaryB) +"apN" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apO" = ( +/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 = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"apR" = ( +/obj/structure/closet/secure_closet/lawyer, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"apS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apT" = ( +/obj/structure/table/glass, +/obj/item/forensics/sample_kit/powder, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"apU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"apV" = ( +/obj/machinery/power/solar{ + id_tag = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"apW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/security{ + c_tag = "Security - Brig West"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"apX" = ( +/obj/structure/bed/padded, +/obj/machinery/flasher{ + id_tag = "Cell 2"; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"apZ" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "dorm_inner"; + name = "Dormitory Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"aqa" = ( +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqb" = ( +/obj/structure/bed/chair, +/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/steel_grid, +/area/exodus/security/prison) +"aqc" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "on"; + id_tag = "air_in"; + use_power = 1 + }, +/obj/structure/bed/chair, +/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/steel_grid, +/area/exodus/security/prison) +"aqd" = ( +/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/steel_grid, +/area/exodus/security/prison) +"aqe" = ( +/obj/structure/bed/chair, +/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/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqf" = ( +/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/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqg" = ( +/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_grid, +/area/exodus/security/prison) +"aqh" = ( +/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/steel_grid, +/area/exodus/security/prison) +"aqi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqj" = ( +/obj/structure/bed/chair{ + 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/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aql" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Internal Affairs" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/lawoffice) +"aqn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqp" = ( +/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/exodus/lawoffice) +"aqq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aqt" = ( +/obj/structure/table/gamblingtable, +/obj/item/board, +/obj/item/storage/box/checkers/chess/red, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqu" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqw" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqx" = ( +/obj/item/stool, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/security{ + c_tag = "Security - Solitary Confinement North" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"aqy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/fitness) +"aqA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"aqB" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqC" = ( +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"aqD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/pods) +"aqE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqF" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/paper, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"aqG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/reinforced, +/obj/item/material/ashtray/plastic{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqH" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Internal Affairs Desk" + }, +/turf/simulated/floor, +/area/exodus/lawoffice) +"aqI" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"aqJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "dorm_pump" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqK" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "dorm_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aqL" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_starboard) +"aqM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/microscope, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"aqN" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqP" = ( +/obj/structure/table/standard, +/obj/item/dice, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aqQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/pods) +"aqR" = ( +/obj/structure/table/standard, +/obj/item/dice, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqS" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqT" = ( +/obj/structure/table/standard, +/obj/item/material/ashtray/plastic, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqU" = ( +/obj/structure/table/standard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqW" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cups, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aqY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"aqZ" = ( +/obj/machinery/button/alternate/door{ + id_tag = "visitdoor"; + name = "Visitation Access"; + pixel_y = -28 + }, +/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_grid, +/area/exodus/security/lobby) +"ara" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"arb" = ( +/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/steel_grid, +/area/exodus/security/lobby) +"arc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/lobby) +"are" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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/exodus/maintenance/dormitory) +"arf" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arg" = ( +/obj/structure/table/glass, +/obj/item/forensics/sample_kit, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ari" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/computer/ship/sensors, +/obj/effect/overmap/visitable/ship/exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"arj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/evidence, +/obj/item/storage/box/swabs, +/obj/machinery/camera/network/security{ + c_tag = "Security - Forensic Office Aft"; + dir = 1 + }, +/obj/item/storage/box/fingerprints, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"ark" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"arl" = ( +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/dnaforensics, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"arm" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exodus/security/detectives_office) +"arn" = ( +/obj/structure/table/standard, +/obj/item/device/radio/headset, +/obj/item/device/radio/headset, +/obj/item/device/radio/headset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aro" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arp" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arq" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arr" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/green, +/obj/machinery/camera/network/security{ + c_tag = "Security - IA Office"; + dir = 1 + }, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"ars" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "dorm_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"art" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_1) +"aru" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"arv" = ( +/obj/machinery/button/blast_door{ + id_tag = "Cell 1"; + name = "Cell 1 Door"; + pixel_x = 30; + pixel_y = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"arw" = ( +/obj/structure/table/standard, +/obj/item/dice/d20, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"arx" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/solitaryB) +"ary" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Cell 1" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arz" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eva_inner"; + name = "EVA Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"arA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/fore) +"arB" = ( +/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/steel_grid, +/area/exodus/security/prison) +"arC" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "eva_airlock"; + name = "EVA Airlock Console"; + pixel_y = 25; + tag_airpump = "eva_pump"; + tag_chamber_sensor = "eva_sensor"; + tag_exterior_door = "eva_outer"; + tag_interior_door = "eva_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"arD" = ( +/obj/structure/table/gamblingtable, +/obj/item/storage/box/checkers/chess, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"arE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/fore) +"arF" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arG" = ( +/obj/structure/table/standard, +/obj/item/newspaper, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"arI" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/detectives_office) +"arJ" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/dormitory) +"arK" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"arL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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/steel_grid, +/area/exodus/security/brig/solitaryB) +"arN" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"arO" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Lobby" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"arP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Prison Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Lobby" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"arQ" = ( +/obj/structure/table/reinforced, +/obj/item/material/clipboard, +/obj/item/hand_labeler, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/dark, +/area/exodus/lawoffice) +"arR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"arS" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"arT" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"arU" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"arV" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_2) +"arW" = ( +/obj/random_multi/single_item/runtime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"arX" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "eva_airlock"; + name = "interior access button"; + pixel_y = 25 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"arY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"arZ" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Solitary Confinement 2" + }, +/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/grid, +/area/exodus/security/brig/solitaryB) +"asa" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"asb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"asc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + id_tag = "Cell 2"; + name = "Cell 2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"asd" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/security/detectives_office) +"asg" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "Cell 1"; + name = "Cell Door" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"ash" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/clothing/glasses/threedglasses, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"asi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"ask" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asl" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asm" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asn" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aso" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"asp" = ( +/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/plating, +/area/exodus/maintenance/dormitory) +"asq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asr" = ( +/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/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"ass" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"ast" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryB) +"asu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"asv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/brig/solitaryA) +"asx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_2"; + pixel_x = -25; + tag_door = "escape_pod_2_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_2) +"asy" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"asz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"asA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/pods) +"asB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"asC" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"asD" = ( +/obj/machinery/button/blast_door{ + id_tag = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4 + }, +/obj/machinery/button/mass_driver{ + id_tag = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/item/stool/padded, +/obj/random_multi/single_item/poppy, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"asE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asI" = ( +/obj/machinery/button/blast_door{ + id_tag = "medbayrecquar"; + name = "Medbay Entrance Lockdown Shutters Control"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/device/radio/phone/medbay{ + name = "reception emergency phone"; + pixel_x = -5 + }, +/obj/random_multi/single_item/runtime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"asJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asK" = ( +/obj/machinery/door_timer/cell_1{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"asL" = ( +/obj/random_multi/single_item/runtime, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"asM" = ( +/obj/structure/bed/padded, +/obj/machinery/flasher{ + id_tag = "Cell 1"; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/brig/solitaryA) +"asO" = ( +/obj/item/stool, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/security{ + c_tag = "Security - Solitary Confinement South" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"asP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asR" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/paper, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"asS" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"asT" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"asU" = ( +/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/exodus/maintenance/dormitory) +"asV" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"asW" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/prison/dorm) +"asX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"asY" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "visit_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison/dorm) +"asZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/dormitory) +"ata" = ( +/obj/machinery/door/airlock{ + name = "Visitation Area" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison/dorm) +"atb" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atc" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"atd" = ( +/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/plating, +/area/exodus/maintenance/evahallway) +"ate" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "visit_blast"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/security/prison/dorm) +"atf" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"atg" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison/dorm) +"ath" = ( +/obj/structure/disposalpipe/segment, +/mob/living/bot/secbot/beepsky, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ati" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Storage"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"atj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"atm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"ato" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_1) +"atp" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"atq" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/pods) +"atr" = ( +/obj/structure/table/woodentable/walnut, +/obj/random/coin, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ats" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"att" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/security_port) +"atu" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_2) +"atv" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"atw" = ( +/obj/machinery/door/airlock{ + id_tag = "visitdoor"; + name = "Visitation Area" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison/dorm) +"atx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison) +"aty" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"atz" = ( +/obj/machinery/navbeacon/Security, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/evac{ + pixel_x = -30; + pixel_z = -4 + }, +/obj/structure/sign/directions/medical{ + pixel_x = -30; + pixel_z = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atB" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/maintenance/dormitory) +"atC" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"atD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep) +"atE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/sleep) +"atF" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"atG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"atH" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"atJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/starboard) +"atK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/latejoin/cryo, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"atL" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/landmark/latejoin/cryo, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"atN" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/security/prepared, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"atO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"atP" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/fitness) +"atQ" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/pods) +"atR" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Cryo Storage" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"atS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/fore) +"atT" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atU" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"atV" = ( +/obj/machinery/cryopod, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"atW" = ( +/turf/simulated/floor/reinforced, +/area/holodeck/alphadeck) +"atX" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_1) +"atY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/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/steel_grid, +/area/exodus/security/brig/solitaryA) +"atZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aua" = ( +/obj/structure/table/woodentable/walnut, +/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/exodus/crew_quarters/sleep) +"aub" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"auc" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aud" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_2) +"aue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"auf" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_1_berth_hatch"; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/pods) +"aug" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"auh" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/paicard, +/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/item/stock_parts/computer/hard_drive/portable{ + pixel_x = 5; + pixel_y = 14 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aui" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"auj" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Solitary Confinement 1" + }, +/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/grid, +/area/exodus/security/brig/solitaryA) +"auk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"aul" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aum" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aun" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + id_tag = "Cell 1"; + name = "Cell 1" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison) +"auo" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aup" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"auq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aur" = ( +/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/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig) +"aus" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aut" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"auu" = ( +/obj/machinery/flasher{ + id_tag = "IAflash"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"auv" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"auw" = ( +/obj/machinery/atm{ + pixel_x = -25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aux" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"auy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Bedroom Fore" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"auz" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"auA" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"auB" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"auC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"auD" = ( +/obj/effect/landmark/latejoin/cryo, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"auE" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"auF" = ( +/obj/effect/landmark/latejoin/cryo, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"auG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"auH" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"auI" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Fitness Room"; + sort_type = "Fitness Room" + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"auJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"auK" = ( +/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/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"auL" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"auM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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 = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"auN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/fore) +"auO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4; + icon_state = "railing_preview" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"auP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"auQ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/arrivals) +"auR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"auS" = ( +/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/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"auT" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"auU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"auV" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_2_berth_hatch"; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/pods) +"auW" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_1_berth"; + pixel_x = -25; + pixel_y = 25; + tag_door = "escape_pod_1_berth_hatch" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"auX" = ( +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"auY" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"auZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"ava" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avb" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"avc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"avd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"ave" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "admin_shuttle_dock_airlock"; + name = "exterior access button"; + pixel_x = -28; + pixel_y = -6 + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "admin_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"avf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/HolodeckControl{ + dir = 8; + linkedholodeck_area = /area/holodeck/alphadeck; + programs_list_id = "ExodusMainPrograms" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avg" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"avh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avi" = ( +/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/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"avj" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"avl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avm" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"avo" = ( +/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/exodus/security/prison) +"avp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"avq" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/brig/solitaryA) +"avr" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"avs" = ( +/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/floor/tiled/steel_grid, +/area/exodus/security/prison) +"avt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"avu" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"avv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"avw" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"avx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"avy" = ( +/obj/structure/sign/warning/pods, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/pods) +"avz" = ( +/obj/machinery/cryopod, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"avA" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/security_starboard) +"avB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"avC" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"avD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"avE" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/crew_quarters/sleep/cryo) +"avF" = ( +/obj/effect/landmark/latejoin/cryo, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"avG" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/cryo) +"avH" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"avI" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"avJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avK" = ( +/obj/effect/floor_decal/corner/white, +/obj/structure/railing/mapped{ + dir = 4; + icon_state = "railing_preview" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"avM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"avN" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "admin_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"avO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"avP" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey{ + dir = 1; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"avS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/paperwork_finish_exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"avT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/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{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"avU" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"avV" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"avW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dormitory 2"; + name = "Dorm" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep) +"avX" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Starboard Solar Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarstarboard) +"avY" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals North" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"avZ" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "arrivals_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/space, +/area/space) +"awa" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Core"; + charge = 5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 1; + output_attempt = 1; + output_level = 250000 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/engine_setup/smes, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"awb" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eva_outer"; + name = "EVA External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "eva_airlock"; + name = "exterior access button"; + pixel_y = 25 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"awc" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "eva_sensor"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "eva_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"awd" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "arrivals_outer"; + name = "Engineering External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/arrivals) +"awe" = ( +/obj/machinery/camera/xray/security{ + c_tag = "Arrivals Escape Pods" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awf" = ( +/obj/machinery/door/airlock/engineering{ + name = "Fore Port Solar Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarport) +"awg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"awh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awi" = ( +/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 + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"awj" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"awk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awl" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Secure Gate"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Visitation" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awm" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awn" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"awo" = ( +/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/exodus/maintenance/library) +"awp" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awq" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/fore) +"awr" = ( +/obj/machinery/seed_storage/garden{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aws" = ( +/obj/machinery/vending/hydronutrients{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awt" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awu" = ( +/obj/machinery/button/flasher{ + id_tag = "IAflash"; + pixel_y = -30 + }, +/obj/machinery/button/blast_door{ + id_tag = "visit_blast"; + name = "Privacy Shutters"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"awv" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/prison/restroom) +"aww" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"awx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"awy" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/prison/restroom) +"awz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"awA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"awB" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_1_hatch"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_1) +"awC" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_2_hatch"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_2) +"awD" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"awE" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"awF" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"awG" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_2_berth"; + pixel_x = -25; + pixel_y = 25; + tag_door = "escape_pod_2_berth_hatch" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"awI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"awK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"awL" = ( +/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/manifold4w/hidden/supply, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"awM" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep/cryo) +"awN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"awO" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep/cryo) +"awP" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/sleep/cryo) +"awQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Fitness Room West"; + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"awR" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eva_inner"; + name = "EVA Internal Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"awS" = ( +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 4; + icon_state = "corner_white_full" + }, +/obj/structure/railing/mapped{ + dir = 4; + icon_state = "railing_preview" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"awT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"awU" = ( +/obj/effect/floor_decal/corner/white/three_quarters, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"awV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"awW" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "solar_tool_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/auxport) +"awX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Port Access" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"awY" = ( +/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/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"awZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"axa" = ( +/obj/machinery/door/airlock{ + id_tag = "Dormitory 1"; + name = "Dorm" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/sleep) +"axb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eva_pump" + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Airlock Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"axc" = ( +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"axd" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"axe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"axf" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axg" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitories Central" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axh" = ( +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"axi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axj" = ( +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = 10 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"axl" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axm" = ( +/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/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axn" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axo" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eva_outer"; + name = "EVA External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axq" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"axt" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axu" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axv" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"axw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"axx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"axy" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"axz" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/fitness) +"axA" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/fitness) +"axB" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/secure_area, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"axC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 8; + name = "Holodeck" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"axD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"axE" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hydroponics) +"axF" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"axG" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"axH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"axI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/obstruction, +/turf/simulated/floor, +/area/exodus/maintenance/evahallway) +"axJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"axK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"axL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"axM" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"axN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian East Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_east) +"axP" = ( +/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/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axQ" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"axR" = ( +/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/steel_grid, +/area/exodus/hallway/primary/fore) +"axS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axT" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axU" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"axV" = ( +/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/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axW" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"axX" = ( +/obj/item/device/t_scanner, +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/security_port) +"axY" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/stack/package_wrap, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar Backroom" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"axZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aya" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/gun/projectile/shotgun/doublebarrel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"ayb" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"ayc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"ayd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aye" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayf" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayg" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayh" = ( +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"ayj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "admin_shuttle_dock_pump" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"ayk" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"ayl" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aym" = ( +/obj/machinery/power/apc/high{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ayn" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ayp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"ayq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ayr" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"ays" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ayt" = ( +/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 = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"ayu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ayv" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Fore"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ayw" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"ayx" = ( +/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/exodus/crew_quarters/sleep) +"ayy" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/sign/warning/pods{ + dir = 4; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ayz" = ( +/obj/machinery/light{ + dir = 8 + }, +/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{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"ayB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"ayC" = ( +/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/exodus/maintenance/evahallway) +"ayD" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/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/exodus/maintenance/evahallway) +"ayE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/plating, +/area/exodus/maintenance/evahallway) +"ayF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"ayG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"ayH" = ( +/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/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayI" = ( +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/evahallway) +"ayJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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/plating, +/area/exodus/maintenance/evahallway) +"ayK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/office) +"ayL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/ai_monitored/storage/eva) +"ayM" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"ayN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"ayO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Escape Pods" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"ayP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/dark, +/area/exodus/crew_quarters/sleep) +"ayQ" = ( +/obj/structure/hygiene/drain/bath, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"ayR" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/dice/d20, +/obj/item/dice, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"ayS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/arrivals) +"ayT" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayU" = ( +/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/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"ayV" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"ayW" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"ayX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/exodus/crew_quarters/fitness) +"ayY" = ( +/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/exodus/crew_quarters/fitness) +"ayZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aza" = ( +/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/exodus/crew_quarters/fitness) +"azb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/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/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azc" = ( +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"azd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aze" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Fitness Room East"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"azf" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"azg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"azh" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azj" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_tool_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarport) +"azk" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azm" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azn" = ( +/obj/machinery/door/airlock/maintenance, +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"azo" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azq" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Northwest" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azr" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azu" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azv" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"azw" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/package_wrap, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"azx" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Voidsuits" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"azy" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"azz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azB" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azD" = ( +/obj/machinery/power/solar_control{ + id_tag = "auxsolareast"; + name = "Fore Starboard Solar Control" + }, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"azE" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/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/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "Security Voidsuits" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"azG" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"azI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/gateway) +"azJ" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Kitchen Cold Room" + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"azK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"azL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/kitchen) +"azM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/kitchen) +"azN" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hydroponics/garden) +"azO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"azP" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"azQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"azR" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated, +/turf/simulated/open, +/area/exodus/maintenance/dormitory) +"azS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"azT" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/security/prepared, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"azU" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"azV" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"azW" = ( +/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/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"azX" = ( +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"azY" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/grey/three_quarters, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAa" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAb" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aAc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAe" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/steel_grid, +/area/exodus/crew_quarters/fitness) +"aAg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Control" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"aAh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aAi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aAj" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aAk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aAl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "admin_shuttle_dock_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "admin_shuttle_dock_sensor"; + pixel_x = -30; + pixel_y = 8 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aAm" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAn" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + frequency = 1380; + id_tag = "admin_shuttle_dock_airlock"; + pixel_x = 30; + tag_airpump = "admin_shuttle_dock_pump"; + tag_chamber_sensor = "admin_shuttle_dock_sensor"; + tag_exterior_door = "admin_shuttle_dock_outer"; + tag_interior_door = "admin_shuttle_dock_inner" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"aAq" = ( +/obj/machinery/door/airlock/external/bolted_open, +/obj/machinery/door/firedoor, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"aAr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aAs" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Fore Port" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aAu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aAv" = ( +/obj/machinery/power/solar_control{ + id_tag = "auxsolareast"; + name = "Fore Port Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aAw" = ( +/obj/machinery/door/airlock/external/bolted_open, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/arrival/station) +"aAx" = ( +/obj/machinery/door/airlock/external/bolted_open, +/obj/machinery/door/firedoor, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aAy" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "solar_tool_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "solar_tool_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "solar_tool_airlock"; + pixel_x = 25; + tag_airpump = "solar_tool_pump"; + tag_chamber_sensor = "solar_tool_sensor"; + tag_exterior_door = "solar_tool_outer"; + tag_interior_door = "solar_tool_inner" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aAz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aAA" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAC" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAD" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAE" = ( +/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/exodus/hallway/secondary/entry/fore) +"aAF" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarport) +"aAG" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aAH" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/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/exodus/maintenance/auxsolarport) +"aAI" = ( +/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/dark, +/area/exodus/ai_monitored/storage/eva) +"aAJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aAK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/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/plating, +/area/exodus/maintenance/bar) +"aAL" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/storage/belt/utility, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aAM" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aAN" = ( +/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/tele_beacon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aAO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aAP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera/network/security{ + c_tag = "EVA Northeast"; + dir = 8 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aAQ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aAR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"aAS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAU" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAV" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAW" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAX" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aAY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aAZ" = ( +/obj/structure/table/reinforced, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/aicard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aBa" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/suit/space/void/medical/prepared, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBb" = ( +/obj/structure/disposalpipe/segment, +/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/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"aBc" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aBd" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aBe" = ( +/obj/structure/closet, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aBg" = ( +/obj/machinery/light, +/obj/structure/closet, +/obj/effect/floor_decal/corner/grey/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBh" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBi" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet/athletic_mixed, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/toilet) +"aBk" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBl" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/hygiene/faucet{ + dir = 1; + icon_state = "faucet" + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"aBm" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBo" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aBp" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aBq" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/kitchen) +"aBr" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aBs" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"aBt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBu" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"aBv" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals South" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBy" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hydroponics/garden) +"aBz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aBA" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aBE" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Southwest" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "nuke_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBH" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aBI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aBJ" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBK" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aBL" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aBM" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBN" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBO" = ( +/obj/machinery/gateway/centerstation, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aBP" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aBQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aBR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aBS" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aBT" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aBU" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aBV" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBW" = ( +/obj/structure/table/standard, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aBX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aBY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/nuke_storage) +"aBZ" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/machinery/camera/network/security{ + c_tag = "EVA Northwest"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCa" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"aCb" = ( +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aCd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aCe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCf" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/fore) +"aCh" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aCi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCj" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aCk" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = 10 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aCl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aCm" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space, +/obj/item/clothing/head/helmet/space, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCo" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aCp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aCq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aCr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aCs" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aCt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aCu" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_east) +"aCv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarstarboard) +"aCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCx" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aCy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCA" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aCB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aCC" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/blackgrid{ + light_inner_range = 2; + light_max_bright = 3; + light_outer_range = 4 + }, +/area/exodus/security/nuke_storage) +"aCD" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aCE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/checkpoint2) +"aCF" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/nuke_cylinder_dispenser, +/mob/living/simple_animal/passive/mouse/brown/Tom, +/turf/simulated/floor/blackgrid{ + light_inner_range = 2; + light_max_bright = 3; + light_outer_range = 4 + }, +/area/exodus/security/nuke_storage) +"aCG" = ( +/obj/machinery/nuclearbomb/station, +/obj/effect/floor_decal/industrial/radiation/full, +/turf/simulated/floor/blackgrid, +/area/exodus/security/nuke_storage) +"aCH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"aCI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aCJ" = ( +/obj/structure/table/woodentable/walnut, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tape_roll, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aCK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/primary) +"aCL" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/landmark/latejoin/gateway, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCM" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aCN" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/landmark/latejoin/gateway, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCO" = ( +/obj/machinery/gateway, +/obj/effect/landmark/latejoin/gateway, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCP" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Gateway Arrival Area"; + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCQ" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aCR" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/pen, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aCS" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCU" = ( +/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, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/suit/space/void/atmos/prepared, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aCW" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aCX" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Bedroom Aft"; + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/sleep/bedrooms) +"aCY" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aDa" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/storage/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDb" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDc" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDd" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDe" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_east) +"aDf" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/item/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aDg" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/nullrod, +/obj/item/device/eftpos{ + eftpos_name = "Chapel EFTPOS scanner" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aDh" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/recharger, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aDi" = ( +/obj/structure/table/woodentable/walnut, +/obj/structure/disposalpipe/segment, +/obj/item/deck/cards, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aDj" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/arrival/station) +"aDk" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aDl" = ( +/obj/structure/table/woodentable/walnut, +/obj/random/single{ + name = "randomly spawned deck of cards"; + spawn_object = /obj/item/deck/cards + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aDm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aDn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aDo" = ( +/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/camera/network/exodus{ + c_tag = "Arrivals East"; + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aDp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/bar) +"aDq" = ( +/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/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aDr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDs" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/bar) +"aDt" = ( +/obj/structure/closet/lasertag/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/fitness) +"aDu" = ( +/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{ + RCon_tag = "Substation - Civilian East" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aDv" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civilian East Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aDw" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/snacks/chips, +/obj/random/single{ + icon_state = "cola"; + name = "randomly spawned cola"; + spawn_object = /obj/item/reagent_containers/food/drinks/cans/cola + }, +/turf/simulated/floor/carpet, +/area/exodus/hallway/secondary/entry/starboard) +"aDx" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"aDz" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/flashlight/flare, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aDB" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aDC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/library) +"aDD" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"aDE" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aDF" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aDG" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/material/ashtray/plastic{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/device/radio/intercom/entertainment{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "east bump"; + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aDH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aDI" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aDJ" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDK" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/arrival/station) +"aDL" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDM" = ( +/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/steel_grid, +/area/exodus/storage/primary) +"aDN" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Tool Storage - Primary" + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDO" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDP" = ( +/obj/structure/table/standard, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aDQ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"aDR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aDS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aDT" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aDU" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aDV" = ( +/obj/structure/closet/gmcloset, +/obj/item/device/eftpos{ + eftpos_name = "Bar EFTPOS scanner" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/glass_jar, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aDW" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aDX" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aDY" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Fore Starboard" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Starboard"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aDZ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarport) +"aEa" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aEb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aEc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Port"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aEd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/primary) +"aEe" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"aEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aEg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aEh" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/bookbinder, +/obj/item/stack/material/plastic/ten, +/obj/item/stack/material/wood/ten, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aEi" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"aEj" = ( +/obj/machinery/vending/tool{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aEk" = ( +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Voidsuits" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"aEl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aEm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aEn" = ( +/obj/machinery/hologram/holopad, +/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/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aEo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aEp" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aEq" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aEr" = ( +/obj/machinery/door/firedoor, +/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/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aEs" = ( +/obj/structure/hygiene/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/freezer, +/area/exodus/crew_quarters/toilet) +"aEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/random/closet, +/obj/item/device/synthesized_instrument/trumpet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aEv" = ( +/obj/machinery/photocopier, +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aEw" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEy" = ( +/obj/machinery/light/small, +/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 = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aEA" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge/meeting_room) +"aEB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aEC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aED" = ( +/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 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Fore Starboard Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aEE" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_tool_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/auxsolarport) +"aEF" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/obj/random/single{ + icon_state = "lighter-g"; + name = "randomly spawned lighter"; + spawn_object = /obj/item/flame/lighter + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aEG" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge/meeting_room) +"aEH" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/recharger, +/turf/simulated/floor/carpet, +/area/exodus/hallway/secondary/entry/starboard) +"aEI" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/space, +/area/shuttle/arrival/station) +"aEJ" = ( +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aEK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge/meeting_room) +"aEL" = ( +/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/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aEM" = ( +/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/dark, +/area/exodus/security/checkpoint2) +"aEN" = ( +/obj/structure/closet/wardrobe/red, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aEO" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aEP" = ( +/obj/item/storage/secure/safe{ + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aEQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aER" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aET" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Bar"; + sort_type = "Bar" + }, +/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/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aEU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aEV" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aEW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aEX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarstarboard) +"aEY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aEZ" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/taperecorder, +/obj/item/device/camera, +/obj/item/device/eftpos{ + eftpos_name = "Library EFTPOS scanner" + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aFa" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aFb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/chargebay) +"aFc" = ( +/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{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFd" = ( +/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/plating, +/area/exodus/maintenance/library) +"aFe" = ( +/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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFg" = ( +/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/exodus/maintenance/library) +"aFh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aFi" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aFj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aFk" = ( +/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/steel_grid, +/area/exodus/storage/primary) +"aFl" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/invisible, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aFm" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar East" + }, +/obj/structure/table/woodentable/maple, +/obj/item/paper_bin, +/obj/item/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aFn" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/woodentable/maple, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aFp" = ( +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/carpet, +/area/exodus/chapel/main) +"aFq" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/prison/restroom) +"aFr" = ( +/obj/item/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aFs" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aFt" = ( +/obj/machinery/self_destruct, +/obj/effect/floor_decal/industrial/hatch/orange, +/obj/machinery/camera/network/command{ + c_tag = "Vault"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aFu" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "escape_dock_north_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aFv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/fire{ + dir = 1; + icon_state = "stripe" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aFw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aFx" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aFy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/fire{ + dir = 1; + icon_state = "stripe" + }, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aFz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "Skynet_launch"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"aFA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aFB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aFC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_west) +"aFD" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "merchant_shuttle_station_exterior"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"aFE" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Northeast" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aFG" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aFH" = ( +/obj/machinery/requests_console{ + department = "Security"; + pixel_y = 30 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aFI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A." + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"aFJ" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aFK" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aFL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"aFM" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aFN" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aFO" = ( +/obj/machinery/lapvend{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aFP" = ( +/obj/machinery/door/firedoor, +/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/grid, +/area/exodus/hallway/secondary/entry/port) +"aFQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aFR" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + id_tag = "Civilian East Subgrid"; + name = "Powernet Sensor - Civilian East Subgrid"; + name_tag = "Civilian East Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aFS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aFT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/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/camera/network/civilian_east{ + c_tag = "Dormitories South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aFU" = ( +/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/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aFV" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/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, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep) +"aFW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aFX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aFY" = ( +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aFZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/bar/cabin) +"aGa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable/maple, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aGb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/shuttle/arrival/station) +"aGc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/robotics) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/folder/white, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/robotics) +"aGf" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Arrival Checkpoint"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGg" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/lab) +"aGh" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Research and Development Desk" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/lab) +"aGj" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGk" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_dock_north_inner"; + name = "Escape Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aGl" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aGm" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aGn" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/toilet) +"aGo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aGp" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aGq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/grey, +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aGr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aGs" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aGt" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aGu" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/fire{ + dir = 1; + icon_state = "stripe" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aGw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aGx" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aGy" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/auxsolarstarboard) +"aGz" = ( +/obj/structure/safe, +/obj/item/clothing/under/color/yellow, +/obj/item/key, +/obj/item/material/sword/katana, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/fire{ + dir = 1; + icon_state = "stripe" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"aGA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aGB" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aGC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aGD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aGE" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aGF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/chapel/office) +"aGG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/chapel/main) +"aGH" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aGI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/chefcloset, +/obj/item/device/eftpos{ + eftpos_name = "Kitchen EFTPOS scanner" + }, +/obj/item/glass_jar, +/obj/item/book/manual/chef_recipes, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aGJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"aGK" = ( +/obj/item/stool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aGL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aGM" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aGN" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aGO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "chemwindow"; + name = "Chemistry Window Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"aGP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/checkpoint2) +"aGQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aGR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aGS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aGT" = ( +/obj/machinery/suit_storage_unit/medical, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aGU" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aGV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "west bump"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aGW" = ( +/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/dark, +/area/exodus/ai_monitored/storage/eva) +"aGX" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/starboard) +"aGY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aGZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/fore) +"aHa" = ( +/obj/structure/table/woodentable/maple, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aHb" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/fore) +"aHc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian East Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_east) +"aHd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/primary) +"aHe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "escape_dock_south_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aHf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aHg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aHh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/dormitory) +"aHi" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_east) +"aHj" = ( +/obj/item/crowbar, +/obj/item/device/flash, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/checkpoint2) +"aHk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aHl" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHm" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aHo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aHp" = ( +/obj/structure/hygiene/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHq" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aHr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aHs" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"aHt" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Bar Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/bar/cabin) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_dock_south_inner"; + name = "Escape Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aHv" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel Office" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHy" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "chapel"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aHz" = ( +/obj/machinery/button/blast_door{ + id_tag = "chapel"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aHA" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHB" = ( +/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/machinery/door/airlock/hatch{ + name = "Command Substation" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"aHC" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/mass_driver{ + id_tag = "chapelgun"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHE" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aHF" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aHG" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver" + }, +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "chapelgun" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aHH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aHI" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/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/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aHJ" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint" + }, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aHK" = ( +/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/plating, +/area/exodus/maintenance/bar) +"aHL" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aHM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aHN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aHO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/decal/cleanable/flour, +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aHP" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Kitchen"; + sort_type = "Kitchen" + }, +/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/plating, +/area/exodus/maintenance/bar) +"aHQ" = ( +/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 + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aHR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Security Checkpoint" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aHS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aHT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar"; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aHU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aHV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/plating, +/area/exodus/maintenance/locker) +"aHW" = ( +/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/exodus/maintenance/bar) +"aHX" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Hydroponics"; + sort_type = "Hydroponics" + }, +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aHY" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aHZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aIa" = ( +/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{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aIb" = ( +/obj/structure/disposalpipe/segment{ + 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/plating, +/area/exodus/maintenance/library) +"aIc" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aId" = ( +/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/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aIe" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar"; + name = "Bar Shutters" + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aIf" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aIg" = ( +/turf/simulated/wall/prepainted, +/area/exodus/library) +"aIh" = ( +/obj/machinery/alarm{ + 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 = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aIi" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/item/stool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aIj" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aIk" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aIl" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aIm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aIn" = ( +/obj/structure/disposalpipe/segment, +/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{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aIo" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/exterior) +"aIp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aIq" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aIr" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Chapel"; + sort_type = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aIs" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aIt" = ( +/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/steel_grid, +/area/exodus/gateway) +"aIu" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "xeno_airlock_control"; + name = "Xenobiology Access Button"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/research{ + autoclose = 0; + id_tag = "xeno_airlock_exterior"; + locked = 1; + name = "Xenobiology External Airlock" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"aIv" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/space, +/area/space) +"aIw" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/arrival/station) +"aIx" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aIy" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aIz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"aIA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/starboard) +"aIB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/engineering, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aIC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A. Cycler Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/ai_monitored/storage/eva) +"aID" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aIE" = ( +/obj/structure/sign/double/map/left, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/starboard) +"aIF" = ( +/obj/structure/sign/double/map/right, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/starboard) +"aIG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aIH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aII" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aIJ" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aIK" = ( +/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/door/airlock/engineering{ + name = "Civilian West Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_west) +"aIL" = ( +/obj/structure/table/woodentable/maple, +/obj/item/board, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aIM" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aIN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/woodentable/maple, +/obj/item/storage/box/checkers/chess/red, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aIO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"aIP" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"aIQ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/security/nuke_storage) +"aIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aIS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + name = "Rest Area" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"aIT" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/storage/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aIU" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aIV" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aIW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aIX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aIY" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aIZ" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aJa" = ( +/obj/machinery/door/airlock{ + name = "Unit B" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aJb" = ( +/obj/machinery/navbeacon/Bar, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/bar/cabin) +"aJc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/l3closet/scientist, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"aJd" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon/Kitchen, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/kitchen) +"aJe" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/central_one) +"aJf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aJg" = ( +/obj/structure/crematorium, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aJh" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/central_two) +"aJj" = ( +/obj/structure/table/woodentable/maple, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aJk" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJl" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_two) +"aJm" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJn" = ( +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aJo" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aJp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aJq" = ( +/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/dark, +/area/exodus/chapel/main) +"aJr" = ( +/obj/structure/sign/monkey_painting{ + pixel_x = -28; + pixel_y = 4 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar/cabin) +"aJs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/maple, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aJt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aJu" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/command) +"aJv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aJw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/evahallway) +"aJx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"aJy" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aJA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 8; + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aJC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/dormitory) +"aJD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/library) +"aJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/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/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJF" = ( +/obj/machinery/door/window/southleft{ + name = "Kitchen Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/kitchen) +"aJG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civilian West" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aJH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJI" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Lounge" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aJQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aJR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aJS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aJT" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aJU" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/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/freezer, +/area/exodus/security/prison/restroom) +"aJV" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aJW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aJX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aJY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aJZ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/sensor{ + id_tag = "Civilian West Subgrid"; + name = "Powernet Sensor - Civilian West"; + name_tag = "Civilian West Subgrid" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aKa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civilian West Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/civilian_west) +"aKb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aKc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aKd" = ( +/obj/machinery/navbeacon/ToolStorage, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aKe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKf" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aKg" = ( +/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/plating, +/area/exodus/maintenance/locker) +"aKh" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"aKj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/vault/bolted, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/nuke_storage) +"aKk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aKm" = ( +/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/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aKn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aKo" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/gateway) +"aKp" = ( +/obj/machinery/vending/fashionvend, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aKq" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aKr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aKs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aKt" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/primary) +"aKu" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aKv" = ( +/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" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aKw" = ( +/obj/structure/lattice, +/turf/space, +/area/exodus/ai_monitored/storage/eva) +"aKx" = ( +/obj/machinery/camera/network/security{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/ai_monitored/storage/eva) +"aKy" = ( +/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/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aKz" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"aKA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aKB" = ( +/obj/structure/table/woodentable/maple, +/obj/item/storage/box/checkers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aKC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/evahallway) +"aKE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 32; + pixel_z = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 32 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - North" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aKF" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aKG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/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/grey/three_quarters, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"aKH" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"aKI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aKJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aKL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aKM" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/toilet) +"aKN" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/bar/cabin) +"aKO" = ( +/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 = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"aKP" = ( +/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/command{ + name = "Electrical Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"aKQ" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar North" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/flame/lighter/zippo, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aKR" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"aKS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aKT" = ( +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Hydroponics Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aKU" = ( +/obj/machinery/requests_console{ + department = "Bar"; + name = "Bar RC"; + pixel_y = 30 + }, +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aKV" = ( +/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 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aKW" = ( +/obj/machinery/navbeacon/Hydroponics, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aKX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aKY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aKZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/kitchen) +"aLa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/woodentable/maple, +/obj/item/storage/box/checkers/chess, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aLb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/maple, +/obj/structure/disposalpipe/segment, +/obj/item/device/camera, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aLc" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Cold Room Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"aLe" = ( +/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, +/obj/machinery/door/airlock/maintenance{ + name = "Bar\\Library Maintenance" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/bar) +"aLf" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hydroponics) +"aLg" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "chapel"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/machinery/door/window/westleft{ + name = "Coffin Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aLh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/exodus/hydroponics) +"aLi" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Library North" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLk" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aLl" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aLn" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLo" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLp" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aLq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/seed_storage/garden, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aLr" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/robotics) +"aLs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aLu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aLw" = ( +/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/engineering{ + name = "Civilian West Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/civilian_west) +"aLx" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"aLy" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aLB" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aLC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aLD" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"aLE" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aLF" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"aLG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Gateway Access" + }, +/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/techfloor/grid, +/area/exodus/hallway/primary/port) +"aLH" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/ai_monitored/storage/eva) +"aLI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aLJ" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aLK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/port) +"aLL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"aLM" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aLN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Robotics"; + sort_type = "Robotics" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aLO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/status_display, +/obj/machinery/door/firedoor, +/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/open{ + dir = 2; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"aLP" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "nuke_shuttle_dock_airlock"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aLQ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aLR" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_three) +"aLS" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/chemistry) +"aLT" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aLU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/chargebay) +"aLV" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"aLW" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_dock_north_outer"; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "escape_dock_north_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aLX" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay3) +"aLY" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aLZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + pixel_x = -28 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aMb" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_one) +"aMc" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aMd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMe" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMf" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aMg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMh" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"aMi" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"aMj" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aMk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aMl" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aMm" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay) +"aMn" = ( +/obj/structure/table/woodentable/maple, +/obj/item/flame/candle, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aMo" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aMp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/barman_recipes, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/screwdriver, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aMq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMs" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aMv" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1; + name = "disposal inlet" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aMw" = ( +/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 = "Chef" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aMx" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/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/techfloor/grid, +/area/exodus/security/prison/restroom) +"aMy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aMz" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aMB" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aMC" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aME" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/bar) +"aMF" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMG" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/mob/living/bot/farmbot/premade, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aMI" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + 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/lino, +/area/exodus/chapel/office) +"aMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/office) +"aML" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aMM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/docking) +"aMN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aMO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aMP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel North"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aMR" = ( +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aMS" = ( +/obj/structure/closet/crate, +/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{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aMT" = ( +/obj/structure/table/standard, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aMU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aMV" = ( +/turf/simulated/wall/titanium, +/area/shuttle/arrival/station) +"aMW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "arrivals_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "arrivals_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_airlock"; + pixel_x = 25; + tag_airpump = "arrivals_pump"; + tag_chamber_sensor = "arrivals_sensor"; + tag_exterior_door = "arrivals_outer"; + tag_interior_door = "arrivals_inner" + }, +/obj/effect/floor_decal/industrial/warning/cee, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aMX" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aMY" = ( +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aMZ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aNa" = ( +/obj/structure/table/woodentable/maple, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/obj/item/material/kitchen/utensil/fork, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aNb" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aNc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hydroponics) +"aNd" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aNe" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aNg" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aNh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aNi" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aNk" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNl" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "centcom_shuttle_dock_airlock"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aNm" = ( +/obj/machinery/flasher{ + id_tag = "permflash"; + name = "Floor mounted flash" + }, +/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/steel_grid, +/area/exodus/security/prison) +"aNn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNp" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aNq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNr" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNs" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Port - Central" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNu" = ( +/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/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNv" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -13; + pixel_y = 28 + }, +/obj/machinery/atm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNz" = ( +/obj/machinery/navbeacon/Lockers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNA" = ( +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aNB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"aNC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"aND" = ( +/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_grid, +/area/exodus/hallway/primary/central_one) +"aNE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNF" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNG" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Northwest" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNJ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNM" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_dock_south_outer"; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "escape_dock_south_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"aNN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aNO" = ( +/obj/machinery/suit_cycler/engineering, +/turf/simulated/floor/tiled/dark, +/area/exodus/ai_monitored/storage/eva) +"aNP" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/cryopod{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"aNQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNR" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aNS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"aNV" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aNW" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aNY" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aNZ" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aOa" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aOb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aOc" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aOd" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "specops_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "specops_dock_airlock"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aOe" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/button/blast_door{ + id_tag = "bar"; + name = "Bar Shutters"; + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aOg" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/woodentable/maple, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "south bump"; + pixel_y = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aOh" = ( +/obj/structure/closet/emcloset, +/obj/item/device/synthesized_instrument/violin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aOi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aOj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOl" = ( +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOn" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aOo" = ( +/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/freezer, +/area/exodus/crew_quarters/kitchen) +"aOp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aOq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aOr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Hydroponics Pasture West"; + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOv" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Pasture" + }, +/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/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aOx" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOA" = ( +/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/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aOC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aOD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aOE" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/office) +"aOF" = ( +/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/lino, +/area/exodus/chapel/office) +"aOG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aOH" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aOI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/lino, +/area/exodus/chapel/office) +"aOJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aOK" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aOL" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/pen, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aOM" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aON" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"aOO" = ( +/obj/item/storage/box/donut, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"aOP" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aOQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"aOR" = ( +/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/effect/floor_decal/plaque, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aOT" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aOU" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aOV" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aOW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aOX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aOY" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aOZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/security/prison/dorm) +"aPa" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/docking) +"aPb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aPc" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Brig Bedroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aPd" = ( +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aPe" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPh" = ( +/turf/simulated/floor/carpet, +/area/exodus/hallway/secondary/entry/starboard) +"aPi" = ( +/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_grid, +/area/exodus/hallway/primary/port) +"aPj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/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/steel_grid, +/area/exodus/hallway/primary/port) +"aPk" = ( +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPl" = ( +/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 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPm" = ( +/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/exodus/hallway/primary/port) +"aPn" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aPq" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aPr" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_two) +"aPs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/starboard) +"aPt" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPu" = ( +/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_grid, +/area/exodus/hallway/primary/central_one) +"aPv" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/hallway/primary/central_one) +"aPw" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPx" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/ai_monitored/storage/eva) +"aPy" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPz" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPA" = ( +/obj/machinery/navbeacon/EVA, +/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_grid, +/area/exodus/hallway/primary/central_one) +"aPB" = ( +/obj/machinery/navbeacon/EVA2, +/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_grid, +/area/exodus/hallway/primary/central_one) +"aPC" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPD" = ( +/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_grid, +/area/exodus/hallway/primary/central_two) +"aPE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aPF" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/hallway/primary/central_two) +"aPG" = ( +/obj/machinery/navbeacon/Dorm, +/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/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aPH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aPI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aPJ" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aPK" = ( +/obj/machinery/door/window{ + autoset_access = 0; + dir = 4; + name = "Bar"; + req_access = list("ACCESS_BAR") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/exodus/crew_quarters/bar) +"aPL" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aPM" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPN" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPP" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/kitchen) +"aPR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPU" = ( +/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/exodus/hydroponics) +"aPV" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"aPW" = ( +/obj/machinery/seed_storage/garden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aPZ" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/office) +"aQa" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/flame/lighter/zippo, +/obj/item/storage/fancy/cigarettes, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQb" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"aQc" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aQd" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "rescue_shuttle_dock_airlock"; + name = "exterior access button"; + pixel_x = -26; + pixel_y = -5 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aQe" = ( +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aQf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aQg" = ( +/obj/machinery/door/blast/regular{ + id_tag = "trash"; + name = "disposal mass driver" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/exodus/maintenance/disposal) +"aQh" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/exterior) +"aQi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aQj" = ( +/obj/item/hand_labeler, +/obj/item/device/assembly/timer, +/obj/item/device/eftpos{ + eftpos_name = "Bridge EFTPOS scanner" + }, +/obj/structure/table/woodentable/walnut, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"aQk" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aQl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aQm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aQn" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQo" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aQp" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"aQq" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aQr" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/random/tech_supply, +/obj/item/clothing/head/flatcap, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQs" = ( +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQt" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower/security, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQu" = ( +/obj/item/folder/red, +/obj/structure/table/woodentable/walnut, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"aQv" = ( +/obj/structure/table/woodentable/walnut, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"aQw" = ( +/obj/random_multi/single_item/captains_spare_id, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"aQx" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"aQz" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera/network/prison{ + c_tag = "Security - Common Brig Southwest"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aQA" = ( +/obj/item/stool, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aQB" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hor) +"aQC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "cargo_bay_door"; + name = "Cargo Docking Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"aQD" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison) +"aQE" = ( +/obj/machinery/door/airlock/glass{ + name = "Brig Dormitories" + }, +/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/steel_grid, +/area/exodus/security/prison/dorm) +"aQF" = ( +/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/exodus/security/prison/dorm) +"aQG" = ( +/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/exodus/hallway/primary/port) +"aQH" = ( +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"aQI" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aQJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "office_shutter"; + name = "Office Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/starboard) +"aQK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aQL" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aQM" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aQN" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"aQO" = ( +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/qm) +"aQP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aQQ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aQR" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"aQS" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"aQT" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/door/window/westright{ + name = "Library Desk Door" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aQU" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/docking_area, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"aQV" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aQW" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"aQX" = ( +/obj/item/material/hatchet, +/obj/item/material/minihoe, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aQY" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"aQZ" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRa" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRb" = ( +/obj/machinery/vending/hydroseeds{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRc" = ( +/obj/machinery/vending/hydronutrients{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRd" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRe" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/vending/hydronutrients/generic{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRf" = ( +/obj/structure/table/standard, +/obj/item/material/minihoe, +/obj/item/material/hatchet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRi" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"aRj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Hydroponics Pasture East"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics) +"aRl" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aRm" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"aRn" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + pixel_x = -25 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the research doors."; + id_tag = "researchdoor"; + name = "Research door control"; + pixel_x = -27; + pixel_y = 13 + }, +/obj/machinery/button/blast_door{ + id_tag = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -38; + pixel_y = 2 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "researchlockdown"; + name = "Research Division Emergency Lockdown Control"; + pixel_x = -38; + pixel_y = 13 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"aRo" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id_tag = "office_shutter"; + name = "Office Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/starboard) +"aRq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRs" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/storage/box/lights/mixed, +/obj/item/extinguisher, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aRt" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"aRu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aRv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aRw" = ( +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/bar) +"aRx" = ( +/obj/item/folder/blue, +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"aRy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRz" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aRA" = ( +/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/exodus/chapel/main) +"aRB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "cargo_bay_door"; + name = "Cargo Docking Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"aRC" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "research_dock_outer"; + name = "Shuttle Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"aRD" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aRE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"aRF" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "cargo_bay_door"; + name = "Cargo Docking Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"aRG" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain's Office"; + dir = 8 + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aRH" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "arrivals_inner"; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/arrivals) +"aRI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aRJ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/turf/simulated/floor/lino, +/area/exodus/hallway/secondary/entry/starboard) +"aRK" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aRL" = ( +/turf/simulated/floor/carpet, +/area/exodus/library) +"aRM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/exodus/library) +"aRN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/storage/box/donut, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"aRO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"aRP" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/secondary/entry/starboard) +"aRQ" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aRR" = ( +/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, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aRS" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aRT" = ( +/obj/structure/table/standard, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Port - East"; + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aRU" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/dormitory) +"aRV" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aRW" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aRX" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_z = 4 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_z = -4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/port) +"aRY" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_one) +"aRZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/exit) +"aSa" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay3) +"aSb" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aSc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay) +"aSd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aSe" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aSf" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aSg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aSh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics Pasture" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aSi" = ( +/obj/machinery/door/airlock/glass{ + name = "Garden Storage" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hydroponics/garden) +"aSj" = ( +/obj/machinery/light/small, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aSk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay) +"aSl" = ( +/obj/machinery/light/small, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom/locked/confessional{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSm" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aSn" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSp" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aSq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 0; + icon_state = "shutter0"; + id_tag = "staffroom"; + name = "Staff Room Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/cryo) +"aSr" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/disposal) +"aSs" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aSu" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/hydroponics) +"aSv" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"aSw" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSx" = ( +/obj/machinery/lapvend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "south bump"; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"aSA" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "staffroom"; + name = "Staff Room Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay2) +"aSB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/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/exodus/research) +"aSC" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"aSD" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aSE" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "solar_tool_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/auxsolarport) +"aSF" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"aSH" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSJ" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"aSK" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"aSL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aSM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aSN" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"aSO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSP" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSS" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aST" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aSU" = ( +/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/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aSW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aSX" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aSY" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aSZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/port) +"aTa" = ( +/obj/machinery/smartfridge, +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/kitchen) +"aTb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"aTc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aTd" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research) +"aTe" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hydroponics/garden) +"aTf" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"aTg" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Airlock One;Airlock Two"; + child_tags_txt = "escape_dock_north_airlock;escape_dock_south_airlock"; + dir = 1; + frequency = 1380; + id_tag = "escape_dock"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aTh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aTi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aTj" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "specops_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"aTk" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aTl" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage"; + id_tag = "garbage" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aTm" = ( +/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/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTo" = ( +/turf/simulated/floor/carpet, +/area/exodus/chapel/main) +"aTp" = ( +/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{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTq" = ( +/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTr" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aTs" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/material/kitchen/rollingpin, +/obj/item/material/knife/kitchen, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aTt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aTu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aTw" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aTx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aTy" = ( +/obj/machinery/atm{ + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aTz" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aTA" = ( +/obj/structure/closet/wardrobe/xenos, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aTC" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aTD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"aTE" = ( +/obj/random/vendor, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTF" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"aTH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay4) +"aTI" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "cmooffice"; + name = "CMO Office Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay4) +"aTJ" = ( +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"aTK" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTL" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTM" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aTN" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aTO" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aTP" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aTQ" = ( +/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/plating, +/area/exodus/maintenance/locker) +"aTR" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aTS" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/locker) +"aTT" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aTU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage" + }, +/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/exodus/hallway/primary/port) +"aTV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aTW" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/library) +"aTX" = ( +/obj/item/stool/bar/padded, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aTY" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/exodus/research/misc_lab) +"aTZ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/misc_lab) +"aUa" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/port) +"aUb" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aUc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aUd" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/security/prison/dorm) +"aUe" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/art) +"aUf" = ( +/obj/item/device/radio/intercom/entertainment{ + dir = 4; + pixel_x = -22 + }, +/obj/item/stool/bar/padded, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "west bump"; + pixel_x = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUg" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/medbay4) +"aUh" = ( +/obj/machinery/computer/modular/preset/civilian, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUi" = ( +/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/plating, +/area/exodus/maintenance/locker) +"aUj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aUk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aUl" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aUm" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/tools) +"aUn" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUo" = ( +/obj/item/folder/blue, +/obj/item/stamp/captain{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aUp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/bridge) +"aUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUr" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aUs" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Kitchen" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUt" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stool/bar/padded, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUw" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUy" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUz" = ( +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"aUA" = ( +/obj/machinery/vending/phoronresearch{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"aUB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/library) +"aUC" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "office_shutter"; + name = "Office Shutters" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"aUD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUH" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUJ" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"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{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aUL" = ( +/obj/effect/wallframe_spawn/reinforced/polarized{ + id = "isoA_window_tint" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/patient_a) +"aUM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"aUN" = ( +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aUO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aUP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Chapel South"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aUT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aUV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUW" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aUX" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light, +/obj/random/tech_supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aUY" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aUZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVa" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVb" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVc" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aVd" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aVe" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aVf" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_airlock"; + pixel_y = 30; + tag_airpump = "nuke_shuttle_dock_pump"; + tag_chamber_sensor = "nuke_shuttle_dock_sensor"; + tag_exterior_door = "nuke_shuttle_dock_outer"; + tag_interior_door = "nuke_shuttle_dock_inner" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aVg" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "nuke_shuttle_dock_pump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aVh" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/bar) +"aVi" = ( +/obj/item/pinpointer, +/obj/item/disk/nuclear, +/obj/item/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aVj" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVk" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aVl" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVo" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"aVq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research) +"aVr" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aVs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVt" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/tech) +"aVw" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Hallway"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"aVx" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aVy" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aVz" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aVA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aVB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aVC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/art) +"aVD" = ( +/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/steel_grid, +/area/exodus/storage/tools) +"aVE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Tool Storage - Auxiliary" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVF" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/emergency2) +"aVH" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aVI" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"aVJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aVK" = ( +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aVL" = ( +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVM" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aVN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVO" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVP" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aVR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVS" = ( +/obj/structure/bed/chair/wood/walnut, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aVT" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"aVU" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVV" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aVW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/chair/wood/walnut, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aVX" = ( +/obj/structure/bed/chair/wood/walnut, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aVY" = ( +/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/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aVZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"aWa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/wood/walnut, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWb" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aWd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/bar/padded, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWe" = ( +/obj/item/device/eftpos{ + eftpos_name = "Captain EFTPOS scanner" + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aWf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWg" = ( +/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/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWh" = ( +/obj/item/melee/whip/chainofcommand, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random_multi/single_item/captains_spare_id, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aWi" = ( +/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/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hydroponics/garden) +"aWk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWl" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aWn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"aWo" = ( +/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/lino, +/area/exodus/hydroponics/garden) +"aWp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aWq" = ( +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aWr" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aWs" = ( +/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/tiled/dark, +/area/exodus/chapel/main) +"aWt" = ( +/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/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aWu" = ( +/obj/random_multi/single_item/captains_spare_id{ + weight = 10 + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aWv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aWw" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"aWx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aWy" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Library Central"; + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWz" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aWB" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/destructive_analyzer, +/obj/item/stock_parts/circuitboard/protolathe, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stock_parts/circuitboard/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aWC" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aWD" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aWE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aWF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Arrivals" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aWG" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aWH" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/camera, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"aWI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Vacant Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/vacantoffice) +"aWJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/white, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aWK" = ( +/obj/item/stool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWL" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aWM" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aWN" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWO" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWP" = ( +/obj/effect/wallframe_spawn/reinforced/polarized{ + id = "isoB_window_tint" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/patient_b) +"aWQ" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aWR" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Locker Room East"; + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aWS" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aWT" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/engineering/break_room) +"aWU" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/medical/psych) +"aWV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aWW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aWX" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aWY" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aWZ" = ( +/obj/structure/table/standard, +/obj/item/storage/fancy/crayons, +/obj/item/storage/fancy/crayons, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Art Supply Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/storage/art) +"aXa" = ( +/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/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aXb" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/heads/chief) +"aXc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aXd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXe" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aXf" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 21 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXg" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXh" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXi" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aXj" = ( +/obj/machinery/door/morgue{ + name = "Private Study" + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/library) +"aXk" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge West" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/landmark/paperwork_spawn_exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXl" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXm" = ( +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXn" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/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, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aXo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"aXp" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aXq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aXr" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency2) +"aXs" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aXt" = ( +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge East" + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/landmark/paperwork_spawn_exodus, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/brown/three_quarters{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXv" = ( +/obj/machinery/computer/modular/preset/medical, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXw" = ( +/obj/effect/wallframe_spawn/reinforced/polarized{ + id = "isoC_window_tint" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/patient_c) +"aXx" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"aXy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"aXz" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"aXA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXB" = ( +/obj/item/storage/box/matches, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"aXC" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"aXD" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/dice, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"aXE" = ( +/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 = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXF" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/evaguide{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"aXG" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge Conference Room" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"aXH" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aXK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/medical) +"aXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"aXM" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/machinery/computer/mining{ + pixel_y = 28 + }, +/obj/machinery/door/window/eastleft, +/turf/simulated/floor/tiled/old_tile, +/area/exodus/quartermaster/miningdock) +"aXN" = ( +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"aXO" = ( +/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/blue{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXP" = ( +/obj/structure/table/gamblingtable, +/obj/item/storage/box/checkers, +/turf/simulated/floor/wood, +/area/exodus/maintenance/dormitory) +"aXQ" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXR" = ( +/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/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aXS" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aXT" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"aXV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXW" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXX" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aXZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"aYa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aYb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aYc" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/exodus/turret_protected/ai_upload) +"aYd" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/book/manual/engineering_guide{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/book/manual/atmospipes, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"aYe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "chemcounter"; + name = "Pharmacy Counter Shutters"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + name = "Chemistry Desk" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"aYf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aYg" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_generator, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"aYh" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aYi" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "nuke_shuttle_dock_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_sensor"; + pixel_y = -25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aYj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aYk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/port) +"aYl" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/book/manual/supermatter_engine{ + pixel_x = -3 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"aYm" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aYn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aYo" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aYp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aYq" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYr" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_eva) +"aYs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYt" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"aYu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aYw" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aYx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aYy" = ( +/obj/machinery/atm{ + pixel_x = -25 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar West"; + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aYz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "office_shutter"; + name = "Office Shutters"; + pixel_x = -8; + pixel_y = 22 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aYA" = ( +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aYB" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + id_tag = "xeno_airlock_interior"; + locked = 1; + name = "Xenobiology Internal Airlock" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"aYC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aYD" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"aYE" = ( +/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, +/obj/item/tape_roll, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aYF" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"aYG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"aYH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"aYJ" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/port) +"aYL" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora_storage) +"aYM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYN" = ( +/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/exodus/bridge) +"aYO" = ( +/turf/simulated/wall/prepainted, +/area/exodus/security/vacantoffice) +"aYP" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"aYQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aYR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"aYS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYT" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"aYU" = ( +/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/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYV" = ( +/obj/machinery/light, +/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/newscaster{ + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYW" = ( +/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 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"aYY" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + name = "Bridge RC"; + pixel_y = -30 + }, +/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/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aYZ" = ( +/obj/machinery/light, +/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/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZa" = ( +/obj/machinery/button/blast_door{ + id_tag = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 6; + pixel_y = -24 + }, +/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/machinery/light_switch{ + pixel_x = -5; + pixel_y = -23 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZb" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"aZc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aZd" = ( +/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/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZe" = ( +/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 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZh" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"aZi" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"aZj" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Bridge East Entrance" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aZk" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"aZl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aZm" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/folder/yellow, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"aZn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"aZo" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/marble, +/obj/machinery/cooker/cereal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"aZp" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/snacks/chips, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"aZq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"aZr" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZs" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZt" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZv" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"aZw" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "mixvent"; + name = "Mixer Room Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"aZx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"aZy" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"aZz" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"aZA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZB" = ( +/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/carpet, +/area/exodus/library) +"aZC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"aZD" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZF" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/computer/modular/preset/medical, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"aZG" = ( +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"aZH" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin, +/obj/item/material/clipboard, +/obj/item/folder/blue{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"aZI" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/pool, +/area/exodus/crew_quarters/fitness) +"aZJ" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/turf/simulated/floor/tiled/dark, +/area/shuttle/arrival/station) +"aZK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"aZL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aZM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "kitchen"; + name = "Kitchen Shutters" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/hallway/primary/starboard) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"aZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aZP" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"aZQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"aZR" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/construction) +"aZS" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "surgeryobs"; + name = "Operating Theatre Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/surgeryobs) +"aZT" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"aZU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/engine_eva) +"aZV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aZW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aZX" = ( +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"aZY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"aZZ" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"baa" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/stamp, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bab" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bac" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bad" = ( +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"bae" = ( +/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/camera/network/civilian_west{ + c_tag = "Locker Room West"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"baf" = ( +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"bag" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bah" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Shower" + }, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -5 + }, +/obj/random/soap, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/captain) +"bai" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"baj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/locker) +"bak" = ( +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/steel_grid, +/area/exodus/crew_quarters/locker) +"bam" = ( +/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_grid, +/area/exodus/crew_quarters/locker) +"ban" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Locker Room"; + sort_type = "Locker Room" + }, +/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/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bao" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/crew_quarters/locker) +"bap" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"baq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"bar" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"bas" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"bat" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/standard, +/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bau" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + dir = 8; + name = "Fitness" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/fitness) +"bav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"baw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bax" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bay" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Medical Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"baz" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/civilian_west) +"baA" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/medical) +"baB" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/tools) +"baC" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baE" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baG" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"baH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"baI" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/engineering/locker_room) +"baJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baM" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"baN" = ( +/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/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baO" = ( +/obj/machinery/door/blast/regular{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"baP" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Bridge" + }, +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baR" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/box/lights/mixed, +/obj/item/device/flashlight, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"baU" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Bridge" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baW" = ( +/obj/machinery/door/airlock/glass/command{ + id_tag = "sbridgedoor"; + name = "Bridge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"baX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"baY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"baZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bba" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bbb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bbc" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbd" = ( +/obj/structure/table/standard, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bbe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bbg" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bbh" = ( +/obj/structure/table/marble, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"bbi" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bbk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/marble, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"bbl" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bbm" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Library"; + sort_type = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bbn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bbo" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bbp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bbq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bbr" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbs" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bbt" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bbu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bbv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bbw" = ( +/obj/machinery/light/small, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_north_airlock"; + master_tag = "escape_dock"; + pixel_y = 25; + tag_airpump = "escape_dock_north_pump"; + tag_chamber_sensor = "escape_dock_north_sensor"; + tag_exterior_door = "escape_dock_north_outer"; + tag_interior_door = "escape_dock_north_inner" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_dock_north_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bbx" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bby" = ( +/obj/machinery/door/blast/regular{ + id_tag = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bbz" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "centcom_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bbA" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bbB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bbC" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"bbD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbE" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bbF" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Vacant Office" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbG" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"bbI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"bbJ" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/locker/locker_toilet) +"bbK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "kitchen"; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/hallway/primary/starboard) +"bbL" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbM" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bbN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbP" = ( +/obj/structure/closet/secure_closet/personal, +/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/monotile, +/area/exodus/crew_quarters/locker) +"bbQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bbR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbU" = ( +/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/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bbV" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Vacant Office"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bbW" = ( +/obj/machinery/light, +/obj/machinery/camera/network/exodus{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bbX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/meter, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/bar) +"bbY" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bbZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/locker/locker_toilet) +"bca" = ( +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bcb" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/storage/box/donut, +/obj/effect/floor_decal/corner/blue/three_quarters, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bcc" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bcd" = ( +/obj/machinery/door/airlock/glass/command{ + id_tag = "sbridgedoor"; + name = "Bridge" + }, +/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/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"bce" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/xenobiology) +"bcf" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bcg" = ( +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bch" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bci" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bcj" = ( +/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/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bck" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "surgeryobs"; + name = "Operating Theatre Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/surgery) +"bcl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"bcm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bcn" = ( +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bco" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/locker) +"bcp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/storage/tools) +"bcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall/prepainted, +/area/exodus/storage/tools) +"bcr" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bcs" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/storage/box/glasses/square, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bct" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcu" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcv" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bcx" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "surgeryobs2"; + name = "Operating Theatre Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/surgery2) +"bcy" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/aft) +"bcz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bcA" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bcB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/kitchen) +"bcC" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bcD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/bridge) +"bcE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bcF" = ( +/obj/machinery/button/blast_door{ + id_tag = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bcG" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bcI" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge blast"; + name = "Bridge Blast Doors" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge) +"bcJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bcK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bcL" = ( +/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/exodus/hallway/primary/starboard) +"bcM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcN" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bcP" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Hydroponics Pasture South"; + dir = 8 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"bcQ" = ( +/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/steel_grid, +/area/exodus/hallway/primary/starboard) +"bcR" = ( +/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/dark, +/area/exodus/chapel/main) +"bcS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/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/techfloor/grid, +/area/exodus/chapel/main) +"bcT" = ( +/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 = 10 + }, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcV" = ( +/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/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcX" = ( +/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/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bcY" = ( +/obj/structure/flora/ausbushes, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"bcZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bda" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/chapel/main) +"bdb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/item/wrench, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Cryogenics" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bdc" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/three_quarters, +/turf/simulated/floor/tiled/dark/monotile, +/turf/simulated/floor/tiled/dark, +/area/shuttle/arrival/station) +"bdd" = ( +/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/exodus/library) +"bde" = ( +/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/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/library) +"bdf" = ( +/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/carpet, +/area/exodus/library) +"bdg" = ( +/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/carpet, +/area/exodus/library) +"bdh" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Departures East"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bdi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bdj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bdk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bdl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/chapel/main) +"bdm" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bdn" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bdo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdp" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdq" = ( +/obj/structure/hygiene/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bdr" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bds" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bdt" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bdu" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 8; + name = "Library" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bdv" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bdw" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/arrivals) +"bdx" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/library) +"bdy" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "admin_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"bdz" = ( +/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bdA" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "medbayquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bdB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bdC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bdD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + id_tag = "packageSort2" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdE" = ( +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bdF" = ( +/obj/machinery/door/firedoor, +/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/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_one) +"bdG" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Captain's Office" + }, +/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/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"bdH" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bdI" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bdJ" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdK" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + name = "Garden" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bdL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/table/standard, +/obj/item/deck/cards, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"bdM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bdN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bdO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bdP" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"bdQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + id_tag = "packageSort2" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + id_tag = "packageSort2" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bdV" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bdW" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bdX" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology/xenoflora) +"bdY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/bridge/meeting_room) +"bdZ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/bridge/meeting_room) +"bea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"beb" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bec" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bed" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/captain) +"bee" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bef" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"beg" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"beh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/computer/modular/preset/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"bei" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Bar South"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bej" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bek" = ( +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"bel" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bem" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"ben" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"beo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"beq" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8; + icon_state = "warningcee" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Auxiliary Docking North"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bes" = ( +/obj/item/folder/yellow, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bet" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"beu" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -10 + }, +/obj/machinery/honey_extractor, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"bev" = ( +/obj/machinery/firealarm{ + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"bew" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/vacantoffice) +"bex" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bey" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bez" = ( +/obj/item/storage/box, +/obj/structure/table/standard, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"beB" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"beC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"beD" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"beE" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"beF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"beG" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"beH" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"beI" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"beJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"beK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"beL" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"beM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/sign/warning/moving_parts{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"beN" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"beO" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"beP" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"beQ" = ( +/obj/item/stool, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beR" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + id_tag = "packageSort2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"beT" = ( +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"beU" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"beV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"beW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + autoset_access = 0; + name = "Diner" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"beX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + autoset_access = 0; + name = "Diner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"beY" = ( +/obj/machinery/light{ + 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/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hydroponics/garden) +"beZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bfa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfb" = ( +/obj/machinery/light_switch{ + pixel_x = 16; + pixel_y = -23 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/item/stack/package_wrap, +/obj/item/reagent_containers/glass/rag, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bfc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bfd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bfe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bff" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Kitchen"; + name = "Kitchen RC"; + pixel_y = -30 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bfh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Patient Wing Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_wing) +"bfi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1"; + id_tag = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"bfj" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bfk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfm" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"bfn" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfo" = ( +/obj/machinery/door/airlock/command{ + name = "Conference 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/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/bridge/meeting_room) +"bfp" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bfr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bft" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bfv" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bfw" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"bfx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bfy" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Library South"; + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"bfz" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bfA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bfB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bfC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + 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, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfE" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfF" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bfG" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bfH" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bfI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfJ" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bfK" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bfL" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bfM" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bfN" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bfO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bfP" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bfQ" = ( +/obj/structure/sign/double/barsign, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"bfR" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bfS" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bfT" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bfU" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfV" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfW" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Warehouse"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bfY" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eng_eva_outer"; + name = "Engineering EVA External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "eng_eva_airlock"; + name = "exterior access button"; + pixel_y = 25 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bfZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bga" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/handrail, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bgc" = ( +/obj/machinery/button/mass_driver{ + id_tag = "enginecore"; + name = "Emergency Core Eject"; + pixel_x = -20 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bgd" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bge" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bgg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bgh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgi" = ( +/turf/unsimulated/mask, +/area/exodus/maintenance/locker) +"bgj" = ( +/obj/structure/table/standard, +/obj/item/wrapping_paper, +/obj/item/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgk" = ( +/obj/structure/closet/crate/medical, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/red{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bgl" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bgn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bgo" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/entry/aft) +"bgp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bgq" = ( +/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/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bgr" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/aft) +"bgs" = ( +/obj/structure/table/standard, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bgt" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_one) +"bgu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bgv" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bgx" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bgy" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bgz" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bgA" = ( +/obj/machinery/navbeacon/CHW, +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bgB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bgC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"bgD" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bgE" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bgF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgH" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgM" = ( +/obj/machinery/button/blast_door{ + id_tag = "heads_meeting"; + name = "Security Shutters"; + pixel_y = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/plating, +/area/exodus/maintenance/locker) +"bgO" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgP" = ( +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bgQ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bgR" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bgS" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bgT" = ( +/obj/machinery/door/firedoor, +/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/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_two) +"bgU" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgV" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bgW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/flasher{ + id_tag = "AI"; + pixel_y = 24 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bgY" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bgZ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bha" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhb" = ( +/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/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bhe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bhg" = ( +/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/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhi" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhj" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - East" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhk" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/device/radio/intercom/private{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/custom{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom/broadcasting{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bhl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bhn" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bhp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bhq" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_north_sensor"; + pixel_y = -25 + }, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bhr" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_airlock"; + pixel_y = 25; + tag_airpump = "centcom_shuttle_dock_pump"; + tag_chamber_sensor = "centcom_shuttle_dock_sensor"; + tag_exterior_door = "centcom_shuttle_dock_outer"; + tag_interior_door = "centcom_shuttle_dock_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "centcom_shuttle_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"bhs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bhu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bhv" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Waste Disposal"; + dir = 8 + }, +/obj/item/material/ashtray/plastic{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bhw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bhx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + name = "Delivery Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bhy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/captain) +"bhz" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bhA" = ( +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bhB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Locker Room South"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bhC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/security/vacantoffice) +"bhD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"bhE" = ( +/obj/structure/closet/crate/internals, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhF" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/captain) +"bhG" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhI" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhJ" = ( +/obj/machinery/button/blast_door{ + id_tag = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhK" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1"; + id_tag = "packageSort1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bhL" = ( +/obj/structure/table/standard, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bhM" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"bhN" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Warehouse" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhO" = ( +/obj/machinery/atmospherics/omni/mixer{ + tag_north = 1; + tag_south = 2; + tag_west = 1; + use_power = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bhP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/captain) +"bhQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bhR" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bhS" = ( +/obj/machinery/power/sensor{ + id_tag = "AI Subgrid"; + name = "Powernet Sensor - AI Subgrid"; + name_tag = "AI Subgrid" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bhT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bhU" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bhV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/papershredder, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bhW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bhX" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/module/power_control, +/obj/item/cell/crap, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bhY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"bhZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bia" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bib" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bic" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"bid" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bie" = ( +/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/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bif" = ( +/obj/structure/disposalpipe/sortjunction/wildcard, +/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/plating, +/area/exodus/maintenance/locker) +"big" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bih" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bii" = ( +/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/steel_grid, +/area/exodus/hallway/primary/starboard) +"bij" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bik" = ( +/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_grid, +/area/exodus/hallway/primary/starboard) +"bil" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bim" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bin" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bio" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bip" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"biq" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bir" = ( +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/cryo) +"bis" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/cryo) +"bit" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biu" = ( +/obj/structure/disposalpipe/segment, +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"biv" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/cryo) +"biw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bix" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/turret_protected/ai) +"biz" = ( +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"biA" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biC" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"biE" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"biF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"biH" = ( +/obj/structure/cable{ + 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/corner/lime{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"biJ" = ( +/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 = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biK" = ( +/obj/structure/cable{ + 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/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biL" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"biM" = ( +/obj/machinery/navbeacon/HOP2, +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"biN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"biO" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32; + pixel_z = -8 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 32; + pixel_z = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"biP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"biQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"biR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"biS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + id_tag = "garbage" + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"biT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/disposal) +"biU" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"biV" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"biW" = ( +/obj/structure/sign/directions/examroom, +/turf/simulated/wall/prepainted, +/area/exodus/medical/reception) +"biX" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"biY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"biZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Delivery Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bja" = ( +/obj/structure/filingcabinet, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bjb" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bjc" = ( +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/requests_console{ + department = "AI"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id_tag = "AICore"; + name = "AI Maintenance Hatch"; + pixel_x = 17; + pixel_y = 25 + }, +/obj/item/device/radio/intercom/custom{ + pixel_x = -28; + pixel_y = 4 + }, +/obj/item/device/radio/intercom/private{ + pixel_x = 28; + pixel_y = 4 + }, +/obj/item/device/radio/intercom/broadcasting{ + pixel_y = 22 + }, +/obj/structure/AIcore/deactivated, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + dir = 1; + frequency = 1380; + id_tag = "escape_dock_south_airlock"; + master_tag = "escape_dock"; + pixel_y = -25; + tag_airpump = "escape_dock_south_pump"; + tag_chamber_sensor = "escape_dock_south_sensor"; + tag_exterior_door = "escape_dock_south_outer"; + tag_interior_door = "escape_dock_south_inner" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_dock_south_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bje" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/device/radio/intercom/private{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom/custom{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom/broadcasting{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjf" = ( +/obj/machinery/door/airlock/research{ + name = "Research Shuttle Dock" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"bjg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bji" = ( +/obj/machinery/navbeacon/Stbd, +/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_grid, +/area/exodus/hallway/primary/starboard) +"bjj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bjk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/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/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"bjl" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/emergency) +"bjm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bjn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bjo" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - East"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bjp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/disposal) +"bjq" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bjr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bjs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bjv" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjx" = ( +/obj/structure/disposalpipe/tagger/partial{ + name = "Sorting Office"; + sort_tag = "Sorting Office" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjz" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - West"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bjB" = ( +/obj/item/frame/apc, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bjC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjD" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bjF" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "eng_eva_sensor"; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/handrail, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bjG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bjH" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjI" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/cyan{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/floor/plating, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"bjJ" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/red{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/turf/simulated/floor/plating, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"bjK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjL" = ( +/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/wood/walnut, +/area/exodus/bridge/meeting_room) +"bjM" = ( +/obj/structure/reagent_dispensers/water_cooler{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bjN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjO" = ( +/obj/machinery/door/window{ + name = "AI Core Door" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/flasher{ + id_tag = "AI"; + pixel_x = 22; + pixel_y = 24 + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "AI Chamber turret control"; + pixel_x = 36; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bjP" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bjQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjR" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bjT" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bjU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bjV" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/engineering_monitoring) +"bjW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bjX" = ( +/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/wood/walnut, +/area/exodus/crew_quarters/captain) +"bjY" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/wall/prepainted, +/area/exodus/turret_protected/ai) +"bjZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bka" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bkb" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - Central"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bkc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medicine Storage" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bke" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"bkf" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - Central East"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bkg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bkh" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bki" = ( +/obj/structure/table/standard, +/obj/item/deck/cards{ + pixel_y = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bkk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/locker) +"bkl" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_south_sensor"; + pixel_y = 25 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/exit) +"bkm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/disposal) +"bkn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bko" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bkp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"bkq" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "specops_dock_airlock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bkr" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "research_dock_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bkt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bku" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Locker Room Toilets"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bkv" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = -6 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = -9 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/device/camera, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bkw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bkx" = ( +/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/plating, +/area/exodus/maintenance/engineering) +"bky" = ( +/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/exodus/medical/patient_wing) +"bkz" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bkA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/workshop) +"bkB" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bkC" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bkD" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bkE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bkF" = ( +/obj/item/paper_bin{ + pixel_y = -10 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bkG" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bkH" = ( +/obj/machinery/atmospherics/pipe/zpipe/down{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/machinery/light, +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 4; + icon_state = "pipe-d" + }, +/turf/simulated/floor/plating, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"bkJ" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"bkK" = ( +/obj/machinery/door/window{ + dir = 4; + name = "AI Core Door" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bkL" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bkM" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "AI Core Door" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bkO" = ( +/obj/machinery/tele_projector{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bkP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bkQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + id_tag = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + id_tag = "garbage" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkS" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bkT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/disposal) +"bkU" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "research_dock_inner"; + name = "Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/docking) +"bkV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bkW" = ( +/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/plating, +/area/exodus/maintenance/locker) +"bkX" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bkY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bkZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bla" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"blb" = ( +/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/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"blc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bld" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"ble" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/maintenance/locker) +"blf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"blg" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/lime/full, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blh" = ( +/obj/effect/floor_decal/corner/lime/full, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blk" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/warning/mail_delivery, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"bln" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"blo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"blp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/storage) +"blq" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"blr" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/locker/locker_toilet) +"bls" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"blt" = ( +/obj/item/device/radio/intercom/entertainment{ + pixel_y = 22 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"blu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/white/three_quarters{ + dir = 1; + icon_state = "corner_white_full" + }, +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/bridge) +"blv" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"blw" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"blx" = ( +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bly" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/bridge/meeting_room) +"blz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"blA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"blB" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"blE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Mailing Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"blH" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"blJ" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"blL" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - West"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"blM" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/emergency) +"blN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Conference Room" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"blO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/starboard) +"blP" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"blQ" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay" + }, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/starboard) +"blR" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"blS" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "specops_dock_airlock"; + pixel_y = 25; + 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_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "specops_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"blT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"blU" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blW" = ( +/obj/structure/table/glass, +/obj/machinery/reagent_temperature/cooler, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay - Chemistry" + }, +/obj/structure/table/glass, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "chemcounter"; + name = "Pharmacy Counter Lockdown Control"; + pixel_y = 25 + }, +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"blZ" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/storage/box/cups, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bmb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/secondary/exit) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bme" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bmf" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Lobby Port" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmg" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + id_tag = "garbage" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bmh" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bmi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bmj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Hallway - Starboard"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bmk" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Hygiene Facilities" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_wing/washroom) +"bml" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmm" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmo" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bmq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bmr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bms" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bmt" = ( +/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/plating, +/area/exodus/maintenance/locker) +"bmu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/plating, +/area/exodus/maintenance/locker) +"bmv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bmw" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Lobby Starboard" + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmx" = ( +/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/exodus/research) +"bmy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom/entertainment{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/bridge/meeting_room) +"bmz" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bmA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bmB" = ( +/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 = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bmC" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/bed/chair/wheelchair, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bmD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bmF" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bmG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/command) +"bmH" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bmI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/porta_turret{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bmJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bmK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bmL" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "eng_eva_airlock"; + name = "interior access button"; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bmM" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bmN" = ( +/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/dark, +/area/exodus/medical/morgue) +"bmO" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + name = "Captain RC"; + pixel_x = -30 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bmP" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bmQ" = ( +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"bmT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/starboard) +"bmU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bmV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bmX" = ( +/obj/structure/disposalpipe/segment, +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bmY" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/chemistry) +"bmZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Morgue" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bna" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bnb" = ( +/obj/machinery/light/small, +/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/plating, +/area/exodus/maintenance/research_starboard) +"bnc" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bnd" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/workshop) +"bne" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/computer/rdconsole/robotics, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/research/robotics) +"bnf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bng" = ( +/obj/item/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/research/robotics) +"bnh" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/research/robotics) +"bni" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/reception) +"bnj" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bnk" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bnl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 8 + }, +/obj/item/device/radio/intercom/entertainment{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnm" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 1 + }, +/obj/item/device/radio/intercom/entertainment{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/exam_room) +"bno" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"bnp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/chief) +"bnq" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bns" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/exit) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bnu" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Auxiliary Docking South" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bnv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bnw" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "captaindoor"; + name = "Office Door Control"; + pixel_x = 15; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the starboard bridge doors."; + id_tag = "sbridgedoor"; + name = "Bridge Door Control"; + pixel_x = 15; + pixel_y = 39 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bnx" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bny" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bnz" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bnA" = ( +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bnB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bnC" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bnD" = ( +/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/recharger{ + pixel_y = 4 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bnE" = ( +/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, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/substation/command) +"bnF" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bnG" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bnH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bnI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/lab) +"bnJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai) +"bnK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnL" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnM" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/emergency) +"bnN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnP" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/locker) +"bnQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bnR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnS" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnT" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "garbage"; + id_tag = "garbage"; + name = "disposal coveyor" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnV" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnX" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bnY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bnZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"boa" = ( +/obj/structure/table/standard, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bob" = ( +/obj/structure/window/reinforced, +/obj/structure/ladder, +/obj/effect/catwalk_plated, +/turf/simulated/open, +/area/exodus/turret_protected/ai_upload) +"boc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bod" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"boe" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/device/flashlight, +/obj/item/clothing/mask/gas, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bof" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bog" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"boh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"boi" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/office) +"boj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bok" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bol" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bom" = ( +/obj/machinery/porta_turret, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_x = -4; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bon" = ( +/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/exodus/medical/exam_room) +"boo" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bop" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"boq" = ( +/obj/structure/table/standard, +/obj/item/autopsy_scanner, +/obj/item/scalpel, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bor" = ( +/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/plating, +/area/exodus/maintenance/substation/command) +"bos" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bot" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/porta_turret, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bou" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bov" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bow" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"box" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"boy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"boz" = ( +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"boA" = ( +/obj/item/stool, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"boC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"boD" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"boE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"boH" = ( +/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/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/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boI" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boJ" = ( +/obj/structure/table/steel_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/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"boK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boL" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boM" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"boP" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"boQ" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boR" = ( +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"boS" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - R&D Lab" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boV" = ( +/obj/item/folder/white, +/obj/structure/table/standard, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"boW" = ( +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/airlock_electronics, +/obj/item/airlock_electronics, +/obj/item/cell/high, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"boX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"boY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"boZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bpa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bpb" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + id_tag = "garbage" + }, +/obj/machinery/door/blast/regular{ + id_tag = "Disposal Exit"; + name = "Disposal Exit Vent" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bpc" = ( +/obj/structure/table/standard, +/obj/item/aiModule/oxygen, +/obj/item/aiModule/oneHuman, +/obj/item/aiModule/purge, +/obj/structure/window/reinforced, +/obj/item/aiModule/antimov, +/obj/item/aiModule/teleporterOffline, +/obj/item/aiModule/robocop, +/obj/item/aiModule/paladin, +/obj/item/aiModule/corp, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/asimov, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bpd" = ( +/obj/structure/plasticflaps, +/obj/machinery/mineral/stacking_machine{ + input_turf = 8; + output_turf = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bpe" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_y = 30 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bpf" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/airlock, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bpg" = ( +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bph" = ( +/turf/unsimulated/mask, +/area/exodus/storage/emergency) +"bpi" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/emergency/oxygen, +/obj/item/tank/emergency/oxygen, +/turf/simulated/floor/tiled/dark, +/area/exodus/maintenance/substation/command) +"bpj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/chargebay) +"bpk" = ( +/obj/machinery/button/blast_door{ + id_tag = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bpl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"bpm" = ( +/obj/item/trash/candy, +/obj/item/trash/popcorn, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bpn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bpo" = ( +/obj/machinery/newscaster{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/item/tape_roll, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/robotics) +"bpq" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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/exodus/maintenance/research_port) +"bps" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bpt" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Sorting Office"; + sort_type = "Sorting Office" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bpw" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal"; + id_tag = "packageExternal" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bpx" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bpy" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bpz" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bpA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bpB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bpC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + id_tag = "Command Subgrid"; + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bpE" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/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/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpF" = ( +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpH" = ( +/obj/structure/table/standard, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/latex, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bpI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/substation/command) +"bpJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpK" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai) +"bpL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bpM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI Upload - West"; + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/porta_turret{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bpN" = ( +/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/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bpO" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"bpP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bpQ" = ( +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/dropper, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bpR" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/disposal) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 6 + }, +/obj/item/device/scanner/spectrometer/adv, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/button/blast_door{ + id_tag = "chemwindow"; + name = "Pharmacy Windows Shutter Control"; + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bpT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bpU" = ( +/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, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bpV" = ( +/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/plating, +/area/exodus/maintenance/research_starboard) +"bpW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bpX" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bpY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bpZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bqa" = ( +/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/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bqb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bqc" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bqd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bqe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Examination room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/exam_room) +"bqf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bqg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/exodus/medical/exam_room) +"bqh" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/storage) +"bqi" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"bql" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"bqm" = ( +/obj/structure/filingcabinet/chestdrawer{ + desc = "A large drawer filled with autopsy reports."; + name = "Autopsy Reports" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqo" = ( +/obj/machinery/optable, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqp" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bqq" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/directions/examroom{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bqr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bqs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/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/tiled/dark, +/area/exodus/research/chargebay) +"bqt" = ( +/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/steel_grid, +/area/exodus/research/chargebay) +"bqu" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Robotics Lab" + }, +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/robotics) +"bqx" = ( +/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/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqy" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bqz" = ( +/obj/structure/table/rack, +/obj/item/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/head/helmet/space/capspace, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/random_multi/single_item/captains_spare_id, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqA" = ( +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqB" = ( +/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/exodus/maintenance/research_shuttle) +"bqC" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bqE" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bqG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqH" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bqI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bqJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bqK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"bqM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqN" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Division Access" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bqO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bqP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/reagent_dispensers/acid{ + pixel_x = -32 + }, +/obj/machinery/r_n_d/circuit_imprinter{ + id_tag = "science" + }, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bqQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqT" = ( +/obj/structure/table/standard, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bqU" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"bqV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bqW" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "cargo_bay"; + name = "cargo bay hatch controller"; + pixel_x = -30; + tag_door = "cargo_bay_door" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bqX" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bqY" = ( +/obj/structure/sign/warning/docking_area{ + pixel_y = -32 + }, +/turf/space, +/area/space) +"bqZ" = ( +/obj/machinery/mech_recharger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/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/steel_grid, +/area/exodus/research/chargebay) +"bra" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"brb" = ( +/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/plating, +/area/exodus/maintenance/engineering) +"brc" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"brd" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bre" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"brf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"brg" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"brh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/robotics) +"bri" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"brj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI Upload - East"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"brk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"brl" = ( +/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/steel_grid, +/area/exodus/quartermaster/office) +"brm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + name = "Delivery Office" + }, +/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/techfloor/grid, +/area/exodus/quartermaster/office) +"brn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bro" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wallframe_spawn/reinforced/polarized, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hop) +"brp" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"brq" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "admin_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"brr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"brs" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"brt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/vault/bolted{ + name = "AI core" + }, +/obj/machinery/door/blast/regular{ + id_tag = "AICore"; + name = "AI core maintenance hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai) +"brv" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door" + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"brw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal"; + id_tag = "packageExternal" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"brx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal"; + id_tag = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bry" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"brz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"brA" = ( +/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/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"brB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"brC" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"brD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"brE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"brF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"brG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/locker) +"brH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"brI" = ( +/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, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/substation/command) +"brJ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"brK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"brL" = ( +/obj/structure/sign/warning/science{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"brM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"brN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"brO" = ( +/obj/item/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/screwdriver, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"brP" = ( +/obj/machinery/door/window/northright{ + name = "Medbay Lobby" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/item/device/radio/intercom/department/medbay, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brQ" = ( +/obj/machinery/door/window/northright{ + name = "Medbay Lobby" + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/folder/white, +/obj/item/pen, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/medical, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"brU" = ( +/obj/effect/floor_decal/corner/purple/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"brV" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"brW" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"brX" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "Pill Cabinet"; + pixel_y = -32 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/tramadol, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"brY" = ( +/obj/item/cane, +/obj/item/cane{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cane{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/storage/box/rxglasses, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"brZ" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/medical/exam_room) +"bsa" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bsb" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/research_shuttle) +"bsc" = ( +/obj/structure/table/rack, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/item/storage/toolbox/mechanical, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/rig/medical/equipped, +/obj/item/defibrillator/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bsd" = ( +/obj/structure/table/standard, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"bsf" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Mech Bay"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bsg" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bsh" = ( +/obj/machinery/robotic_fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"bsj" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/landmark/latejoin/cyborg, +/obj/machinery/computer/cryopod/robot{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bsm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/flasher{ + id_tag = "AI"; + pixel_x = -22; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bsn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bsp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/captain) +"bsq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering/atmos/storage) +"bsr" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bss" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bst" = ( +/obj/structure/hygiene/shower{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bsu" = ( +/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/exodus/research) +"bsv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bsw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/fabricator{ + id_tag = "science" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bsx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bsy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering) +"bsz" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bsA" = ( +/obj/item/storage/toolbox/electrical, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bsB" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Sublevel Access" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bsC" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bsD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bsE" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/research_port) +"bsF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bsG" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bsH" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/engineering) +"bsI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bsL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bsM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bsN" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bsO" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"bsP" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bsQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"bsR" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eng_eva_outer"; + name = "Engineering EVA External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bsS" = ( +/obj/machinery/mass_driver{ + id_tag = "trash" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + pixel_x = -25; + pixel_y = 10 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/disposal) +"bsT" = ( +/obj/structure/closet/emcloset, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsU" = ( +/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/exodus/maintenance/research_shuttle) +"bsV" = ( +/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 = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bsW" = ( +/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/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad3"; + id_tag = "QMLoad3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bsZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"btb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/teleporter) +"btc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"btd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bte" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"btf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"btg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bth" = ( +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bti" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"btj" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"btk" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"btl" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel" + }, +/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, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/command) +"btm" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"btn" = ( +/obj/machinery/door/window/southright{ + name = "Virology Isolation Room Two" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"bto" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/effect/wallframe_spawn/reinforced/polarized, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/crew_quarters/heads/hop) +"btp" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/captain) +"btq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"btr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - East Southwest"; + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bts" = ( +/obj/item/reagent_containers/dropper, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/glass, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"btt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"btu" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"btv" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"btw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"btx" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bty" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerPort"; + name = "Medbay Doors Control"; + pixel_x = -16; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btz" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/office) +"btC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_three) +"btD" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"btE" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "admin_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -8; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"btF" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"btG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/hallway/primary/central_three) +"btH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/research/docking) +"btI" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/device/radio/phone/medbay{ + name = "reception emergency phone" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"btK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btL" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"btM" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerStar"; + name = "Medbay Doors Control"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"btN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"btO" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"btP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"btQ" = ( +/obj/structure/displaycase, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"btR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"btS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"btT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"btU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"btV" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"btW" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"btX" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"btZ" = ( +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bua" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"bub" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/medical/morgue) +"buc" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/chemistry) +"bud" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bue" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"buf" = ( +/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/tiled/white, +/area/exodus/research/robotics) +"bug" = ( +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/cable_coil, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"buh" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"buj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"buk" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bul" = ( +/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/steel_grid, +/area/exodus/research/robotics) +"bum" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bun" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research) +"buo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bup" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"buq" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bur" = ( +/obj/machinery/r_n_d/protolathe, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"bus" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"but" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/lab) +"buu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"buv" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"buw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bux" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"buy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eng_eva_pump" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"buz" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology Southwest"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"buA" = ( +/obj/machinery/tele_beacon, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"buB" = ( +/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/conveyor{ + dir = 1; + id = "QMLoad3"; + id_tag = "QMLoad3" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buC" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buD" = ( +/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/exodus/quartermaster/storage) +"buE" = ( +/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/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buF" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buG" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/upload/robot{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"buH" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"buI" = ( +/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/steel_grid, +/area/exodus/quartermaster/storage) +"buJ" = ( +/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/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buK" = ( +/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/machinery/door/airlock/multi_tile/glass/mining{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"buL" = ( +/obj/structure/disposalpipe/tagger/partial{ + name = "Sorting Office"; + sort_tag = "Sorting Office" + }, +/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/steel_grid, +/area/exodus/quartermaster/office) +"buM" = ( +/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/exodus/quartermaster/office) +"buN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/upload/ai{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"buO" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/material/clipboard, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buP" = ( +/obj/item/stamp/cargo{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table/standard, +/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/steel_grid, +/area/exodus/quartermaster/office) +"buR" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"buS" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Lobby" + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"buU" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"buW" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"buX" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/recharger, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"buY" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"buZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bva" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/recharger/wallcharger{ + pixel_y = 30 + }, +/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/exodus/crew_quarters/heads/hop) +"bvb" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bvc" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bvd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bve" = ( +/obj/machinery/hologram/holopad, +/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/dark, +/area/exodus/turret_protected/ai_upload) +"bvf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bvg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bvh" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/captain) +"bvi" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bvj" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bvk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Chemistry Laboratory" + }, +/obj/structure/sign/chemistry{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bvl" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvm" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvo" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Medical Reception" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvp" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvq" = ( +/obj/machinery/door/window/eastright{ + name = "Medical Reception" + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/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/steel_grid, +/area/exodus/medical/reception) +"bvr" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"bvt" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvu" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "medbayrecquar"; + name = "Medbay Emergency Quarantine Shutters"; + opacity = 0 + }, +/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{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/reception) +"bvv" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/random/firstaid{ + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/beige/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bvw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hop) +"bvx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Examination Room" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay2) +"bvy" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay2) +"bvz" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/chargebay) +"bvA" = ( +/obj/effect/floor_decal/corner/paleblue, +/obj/structure/table/standard, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bvB" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bvC" = ( +/obj/structure/table/standard, +/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/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bvD" = ( +/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/exodus/research/robotics) +"bvE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bvF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bvG" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/command) +"bvH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bvK" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/lab) +"bvL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Research and Development" + }, +/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/techfloor/grid, +/area/exodus/research/lab) +"bvM" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/lab) +"bvN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bvO" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_research) +"bvP" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/status_display, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/medical/virology) +"bvQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bvS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bvT" = ( +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Server Room" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bvU" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bvV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eng_eva_pump" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bvW" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bvX" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bvY" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"bvZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwa" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwc" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad3"; + id_tag = "QMLoad3" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwe" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwg" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bwh" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwi" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Cargo Bay"; + sort_type = "Cargo Bay" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwk" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay2) +"bwl" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwm" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwn" = ( +/obj/structure/table/standard, +/obj/item/aiModule/nanotrasen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/aiModule/reset, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bwo" = ( +/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/exodus/quartermaster/office) +"bwp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bwr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk" + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bws" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwu" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Medical" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bwv" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/robotics) +"bww" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research) +"bwx" = ( +/obj/structure/table/standard, +/obj/item/aiModule/freeform, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/aiModule/protectStation, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bwy" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bwz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwA" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"bwB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwC" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bwD" = ( +/obj/machinery/smartfridge/secure/medbay, +/turf/simulated/wall/prepainted, +/area/exodus/medical/chemistry) +"bwE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/drone_fabrication) +"bwF" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bwG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hop_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = 16; + pixel_y = 28 + }, +/obj/machinery/button/windowtint{ + pixel_x = 16; + pixel_y = 38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bwI" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bwJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"bwK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bwL" = ( +/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/white, +/area/exodus/research/mixing) +"bwM" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/research_starboard) +"bwN" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"bwO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"bwP" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"bwQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload) +"bwR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain's Quarters"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/captain) +"bwS" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bwT" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Fore Starboard Corridor" + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bwV" = ( +/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/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bwW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bwX" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bwY" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/paleblue/three_quarters{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/reception) +"bwZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/chemical, +/obj/item/storage/box/pillbottles, +/obj/item/device/radio/headset/headset_med, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Drug Storage" + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bxd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bxe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + id_tag = "MedbayFoyerPort" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bxf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medbay Reception" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay3) +"bxg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bxh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + id_tag = "MedbayFoyerStar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bxi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"bxj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"bxk" = ( +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"bxl" = ( +/obj/structure/hygiene/urinal{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"bxm" = ( +/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/exodus/medical/medbay2) +"bxo" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxq" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_upload) +"bxs" = ( +/obj/structure/table/standard, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/beige/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxt" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/bottle/antitoxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/medical, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bxu" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/black/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxv" = ( +/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, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxw" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bxx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bxy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bxz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bxA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/organ_printer/flesh, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bxB" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/pen, +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics - Operational Room"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bxC" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay) +"bxD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bxE" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/empty, +/obj/item/storage/firstaid/empty, +/obj/item/storage/firstaid/empty, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/obj/machinery/newscaster{ + pixel_x = 26; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bxF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay3) +"bxG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bxH" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/locker) +"bxI" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/cargo) +"bxJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bxK" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"bxL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bxM" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_y = 30 + }, +/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/stack/material/aluminium, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bxN" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_monitoring) +"bxO" = ( +/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/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bxP" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research) +"bxQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"bxR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bxS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxV" = ( +/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, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bxW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxX" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bxY" = ( +/obj/machinery/fabricator, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 10 + }, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bxZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"byb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"byc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"byd" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "arrivals_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"byf" = ( +/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/exodus/quartermaster/office) +"byg" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"byh" = ( +/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/exodus/hallway/primary/central_three) +"byi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"byj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"byk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/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{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"byl" = ( +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bym" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"byn" = ( +/obj/effect/overmap/visitable/ship/landable/pod/research, +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"byo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_upload) +"byp" = ( +/obj/machinery/door/airlock/command{ + id_tag = "hopdoor"; + name = "Head of Personnel" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/hop) +"byq" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"byr" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bys" = ( +/obj/machinery/turretid/stun{ + control_area = "\improper AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"byt" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"byu" = ( +/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/exodus/medical/chemistry) +"byv" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/medical/medbay) +"byw" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/security/prison/dorm) +"byx" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerPort"; + name = "Medbay Doors Control"; + pixel_x = -24; + pixel_y = 26 + }, +/obj/machinery/computer/guestpass{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"byz" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engi_shuttle) +"byB" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byC" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"byD" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control switch for the medbay foyer."; + id_tag = "MedbayFoyerStar"; + name = "Medbay Doors Control"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byF" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"byG" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 28 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"byH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"byI" = ( +/mob/living/simple_animal/passive/corgi/Ian, +/turf/simulated/floor/carpet, +/area/exodus/crew_quarters/heads/hop) +"byJ" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byK" = ( +/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/exodus/medical/medbay2) +"byL" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byM" = ( +/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 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/teleporter) +"byO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byP" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 30 + }, +/obj/random/soap, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"byQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byR" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byS" = ( +/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/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"byU" = ( +/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{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"byV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"byW" = ( +/obj/machinery/light/small, +/obj/structure/mopbucket, +/obj/item/mop, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/freezer, +/area/exodus/security/prison/restroom) +"byX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"byY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"byZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/chargebay) +"bza" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bzb" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"bzc" = ( +/obj/structure/table/standard, +/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/organ/internal/posibrain, +/obj/item/device/robotanalyzer, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bzd" = ( +/obj/machinery/camera/network/security{ + c_tag = "Engineering Airlock Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "eng_eva_pump" + }, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bze" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bzf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bzg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bzh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bzi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bzj" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bzl" = ( +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bzm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzt" = ( +/obj/machinery/navbeacon/HOP, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bzu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bzv" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_x = -30 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Office"; + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stack/material/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/aluminium/fifty, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzw" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzx" = ( +/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/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bzz" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bzA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bzB" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bzC" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bzD" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bzE" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bzF" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/floor_decal/corner/purple/three_quarters, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bzG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bzH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bzI" = ( +/obj/item/clothing/glasses/welding/superior, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/closet/secure_closet/RD, +/obj/item/paper/monitorkey, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bzJ" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/stamp/hop, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bzK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "cargo_bay_door"; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bzM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bzN" = ( +/obj/machinery/power/apc/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"bzO" = ( +/obj/machinery/computer/shuttle_control/explore/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"bzP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bzQ" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/tele_pad, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bzR" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bzS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bzT" = ( +/obj/structure/closet/secure_closet/psychiatry, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"bzU" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bzV" = ( +/obj/structure/table/rack, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/teleporter) +"bzW" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bzX" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bzY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bAa" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bAb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bAc" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/firstaid, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAd" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bAe" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/random/firstaid{ + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAg" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/firstaid, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_server_room) +"bAi" = ( +/obj/machinery/computer/shuttle_control/research{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bAj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_cyborg_station) +"bAk" = ( +/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bAl" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Medbay"; + sort_type = "Medbay" + }, +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bAm" = ( +/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/exodus/medical/medbay) +"bAn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/white, +/area/exodus/medical/medbay3) +"bAo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Equipment" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bAp" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bAq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bAr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Equipment" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay2) +"bAs" = ( +/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/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/medical) +"bAt" = ( +/obj/structure/cable/green{ + 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 = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bAu" = ( +/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/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAv" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAy" = ( +/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_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAz" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/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/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAA" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -5; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bAE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bAF" = ( +/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/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + id_tag = "Medbay Subgrid"; + name = "Powernet Sensor - Medbay Subgrid"; + name_tag = "Medbay Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bAG" = ( +/obj/structure/disposalpipe/segment, +/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/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bAH" = ( +/obj/structure/morgue, +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAI" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAJ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAK" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"bAM" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAN" = ( +/obj/item/stool/padded, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAO" = ( +/obj/structure/table/standard, +/obj/item/crowbar, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bAQ" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"bAR" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAS" = ( +/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/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAT" = ( +/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 = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAU" = ( +/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/exodus/research) +"bAV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bAW" = ( +/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, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bAX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bAY" = ( +/obj/machinery/light, +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bAZ" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/clothing/head/soft/orange, +/obj/item/clothing/shoes/sandal, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bBa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bBb" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bBc" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/clothing/suit/apron/overalls, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/prison/dorm) +"bBd" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/emergency) +"bBe" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"bBf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bBg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bBh" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bBi" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bBj" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bBk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bBl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/lab) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bBn" = ( +/obj/machinery/navbeacon/QM1, +/obj/structure/closet/secure_closet/cargotech, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bBo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bBp" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"bBq" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/folder/yellow, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bBr" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/unary_atmos/heater, +/obj/item/stock_parts/circuitboard/unary_atmos/cooler{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bBs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bBt" = ( +/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_grid, +/area/exodus/quartermaster/office) +"bBu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "cargo_bay_door"; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bBv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + id_tag = "cargodoor"; + name = "Cargo Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/office) +"bBw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bBx" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bBy" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bBz" = ( +/obj/structure/closet/secure_closet/hop2, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bBA" = ( +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/device/megaphone, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bBB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bBC" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/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/techfloor/grid, +/area/exodus/turret_protected/ai_server_room) +"bBE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bBF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload Foyer"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bBG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bBH" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/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/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_cyborg_station) +"bBI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_upload_foyer) +"bBJ" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Substation" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/medical) +"bBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bBM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/stool, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bBN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bBO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bBP" = ( +/obj/machinery/message_server, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bBQ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bBR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/teleporter) +"bBS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bBT" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bBU" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bBV" = ( +/obj/item/modular_computer/telescreen/preset/generic{ + name = "north bump"; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bBW" = ( +/obj/structure/table/standard, +/obj/item/roller{ + pixel_y = 1 + }, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bBX" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"bBY" = ( +/obj/machinery/light{ + dir = 4 + }, +/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, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bBZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bCa" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bCb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bCc" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bCd" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bCe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Cloning Laboratory" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bCf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Genetics Laboratory" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bCg" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bCh" = ( +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCi" = ( +/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/exodus/research) +"bCj" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCk" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCl" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "researchlockdown"; + name = "Research Division Blast Doors"; + opacity = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bCm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bCn" = ( +/obj/machinery/navbeacon/QM2, +/obj/structure/closet/secure_closet/cargotech, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bCo" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"bCp" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/genetics) +"bCq" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + pixel_y = 4 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for a door to space."; + id_tag = "xenobioout6"; + name = "Containment Release Switch"; + pixel_x = 24; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bCr" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"bCs" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bCt" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -23 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bCu" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bCv" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bCw" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bCx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/conveyor_switch{ + id = "cargo_mining_conveyor"; + id_tag = "cargo_mining_conveyor"; + pixel_x = -16; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/aluminium/fifty, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"bCA" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "QM Office"; + sort_type = "QM Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bCB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bCC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bCD" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"bCE" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bCF" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"bCG" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bCH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bCI" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bCJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/docking) +"bCK" = ( +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bCL" = ( +/obj/machinery/navbeacon/Research, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research) +"bCM" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/storage/belt/utility, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bCN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bCO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bCP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bCQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bCR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hop_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = 26; + pixel_y = 17 + }, +/obj/machinery/button/windowtint{ + pixel_x = 36; + pixel_y = 18 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "hopdoor"; + name = "Office Door Control"; + pixel_x = 26; + pixel_y = -17 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCS" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/machinery/computer/account_database{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCU" = ( +/obj/item/folder/blue, +/obj/item/stamp/denied, +/obj/item/device/eftpos{ + eftpos_name = "HoP EFTPOS scanner" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bCW" = ( +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bCX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bCY" = ( +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bDb" = ( +/obj/structure/closet/crate{ + name = "Camera Assembly Crate" + }, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bDc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bDd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bDg" = ( +/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/exodus/teleporter) +"bDh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bDi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/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/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_port) +"bDj" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"bDk" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bDl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/white, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bDm" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Emergency Kit" + }, +/obj/machinery/door/firedoor, +/obj/item/storage/toolbox/emergency, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/bodybag/cryobag, +/obj/item/device/radio{ + name = "medbay emergency radio link" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bDn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medicine Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bDo" = ( +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bDp" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bDr" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Equipment Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bDs" = ( +/obj/structure/table/standard, +/obj/machinery/light, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bDt" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/sleeper) +"bDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/storage/primary) +"bDv" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "Pill Cabinet" + }, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/inaprovaline, +/turf/simulated/wall/prepainted, +/area/exodus/medical/sleeper) +"bDw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bDx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/port) +"bDy" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bDB" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bDC" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 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/exodus/research) +"bDE" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bDF" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Research"; + sort_type = "Research" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bDG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bDH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/fitness) +"bDI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bDJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/cryo) +"bDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDL" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bDM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Division West" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bDP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server 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, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bDQ" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "research_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_research) +"bDR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bDS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bDT" = ( +/turf/simulated/floor/bluegrid, +/area/exodus/research/server) +"bDU" = ( +/obj/structure/sign/warning/secure_area, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research) +"bDV" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bDW" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bDX" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"bDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bDZ" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/server_room{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/server) +"bEa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bEb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/stock_parts/circuitboard/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bEc" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bEd" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Shuttle Dock"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bEe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bEf" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/storage) +"bEg" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/obj/machinery/status_display/supply_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEj" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEl" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEm" = ( +/obj/machinery/navbeacon/QM3, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/bot/mulebot{ + suffix = "#1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bEn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_shuttle) +"bEo" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "toxin_test_airlock"; + name = "exterior access button"; + pixel_x = -20; + pixel_y = -20 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bEp" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEq" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_upload_foyer) +"bEs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"bEu" = ( +/obj/machinery/atm{ + pixel_x = -28 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bEv" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bEw" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bEx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bEy" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - HoP's Office"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bEA" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEB" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bEC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_server_room) +"bED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/turret_protected/ai_cyborg_station) +"bEE" = ( +/obj/structure/table/standard, +/obj/prefab/hand_teleporter, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEF" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEG" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Teleporter"; + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/crowbar, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEH" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"bEI" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"bEK" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEL" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Emergency Entrance" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bEP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bEQ" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bES" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay3) +"bET" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bEU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"bEV" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bEW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bEY" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bEZ" = ( +/obj/machinery/power/apc/high{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bFa" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Lab"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bFb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "cargo_bay_door"; + name = "Cargo Docking Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/storage) +"bFc" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bFe" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/frame/apc, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bFf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/camera_assembly, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bFg" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "RD Office"; + sort_type = "RD Office" + }, +/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/plating, +/area/exodus/maintenance/research_port) +"bFh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Research" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/genetics) +"bFi" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFj" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research) +"bFk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bFl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bFp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_shuttle) +"bFs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFv" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_server_room) +"bFw" = ( +/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/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFy" = ( +/obj/machinery/door/airlock/maintenance, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_shuttle) +"bFz" = ( +/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/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bFA" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Port - West"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bFC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bFD" = ( +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bFE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bFG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bFH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/storage) +"bFI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFJ" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "tox_airlock_sensor"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bFK" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "east bump"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bFL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFN" = ( +/obj/structure/disposalpipe/sortjunction/untagged{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bFO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/emergency) +"bFQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Research" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"bFR" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bFS" = ( +/obj/machinery/door/window/southright{ + name = "Toxins Launcher" + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Toxins Launcher" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/research/mixing) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + 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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bFW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bFX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bFY" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "research_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"bFZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + id_tag = "cargodoor"; + name = "Mining Dock" + }, +/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/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"bGa" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/hor) +"bGb" = ( +/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/exodus/maintenance/research_shuttle) +"bGc" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bGd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/starboard) +"bGe" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bGf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bGg" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "tox_airlock_control"; + pixel_x = -24; + tag_airpump = "tox_airlock_pump"; + tag_chamber_sensor = "tox_airlock_sensor"; + tag_exterior_door = "tox_airlock_exterior"; + tag_interior_door = "tox_airlock_interior" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/tvalve/bypass{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bGh" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Primary Tool Storage"; + sort_type = "Primary Tool Storage" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGj" = ( +/obj/structure/disposalpipe/segment{ + 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/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGk" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGl" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGm" = ( +/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" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"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, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"bGq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bGr" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bGs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bGt" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"bGu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Southwest"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bGv" = ( +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/qm) +"bGw" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Messaging Server" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_server_room) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/highsecurity{ + name = "Cyborg Station" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/turret_protected/ai_cyborg_station) +"bGy" = ( +/obj/machinery/door/airlock/multi_tile/glass/medical{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bGz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bGA" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bGB" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/central_three) +"bGC" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI - Messaging Server"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_server_room) +"bGD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bGE" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/command{ + c_tag = "AI - Cyborg Station"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bGF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bGG" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Chemistry"; + sort_type = "Chemistry" + }, +/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 = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bGI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bGJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bGK" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bGL" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bGM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + name = "Medbay RC"; + pixel_y = 30 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bGN" = ( +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bGO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/white, +/area/exodus/medical/medbay2) +"bGP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bGR" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bGT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/cryo) +"bGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/simple/hidden/supply{ + dir = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bGV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Cloning Laboratory" + }, +/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/techfloor/grid, +/area/exodus/medical/cryo) +"bGW" = ( +/obj/structure/disposalpipe/junction{ + dir = 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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bGX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bGY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + id_tag = "GeneticsDoor"; + name = "Genetics Laboratory" + }, +/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/techfloor/grid, +/area/exodus/medical/genetics) +"bGZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHa" = ( +/obj/item/frame/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bHd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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 = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bHe" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "tox_airlock_pump" + }, +/obj/machinery/air_sensor{ + id_tag = "toxins_mixing_interior"; + pixel_x = -8; + pixel_y = -18 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bHf" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bHg" = ( +/obj/machinery/navbeacon/QM4, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/bot/mulebot{ + suffix = "#1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"bHi" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bHj" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient A"; + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bHk" = ( +/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/exodus/research) +"bHl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai) +"bHm" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research) +"bHn" = ( +/obj/machinery/door/firedoor, +/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/exodus/research) +"bHo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bHp" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/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/grid, +/area/exodus/research/docking) +"bHq" = ( +/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/tiled/white, +/area/exodus/research) +"bHr" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"bHs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHt" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_4_berth_hatch"; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/cargo) +"bHu" = ( +/obj/machinery/door/airlock/glass/research{ + autoclose = 0; + id_tag = "tox_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock" + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bHv" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHw" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHx" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "research_dock_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "research_dock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"bHy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Shuttle Dock Maintainance" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + frequency = 1380; + id_tag = "research_dock_airlock"; + pixel_x = 25; + tag_airpump = "research_dock_pump"; + tag_chamber_sensor = "research_dock_sensor"; + tag_exterior_door = "research_dock_outer"; + tag_interior_door = "research_dock_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"bHA" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bHB" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bHC" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bHD" = ( +/obj/structure/disposalpipe/segment, +/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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bHE" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_x = -30; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bHF" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bHG" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Miscellaneous Test Chamber"; + network = list("Research","Miscellaneous Reseach") + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bHH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/machinery/button/windowtint{ + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "qmdoor"; + name = "office door control"; + pixel_x = 15; + pixel_y = -25 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the cargo doors."; + id_tag = "cargodoor"; + name = "cargo door control"; + pixel_x = 15; + pixel_y = -34 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bHI" = ( +/obj/structure/cable{ + 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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bHJ" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/captain) +"bHK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHL" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHM" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bHN" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHO" = ( +/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/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/central_three) +"bHP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bHQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - South Southwest" + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHU" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bHY" = ( +/obj/machinery/disposal, +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bHZ" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - South Southeast" + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bIa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/xenobiology) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bIc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bId" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIe" = ( +/obj/machinery/atm{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIf" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Central - Southeast" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIg" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bIh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bIi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + opacity = 0 + }, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bIj" = ( +/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, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/paleblue, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bIk" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 11 + }, +/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/tiled/white, +/area/exodus/medical/medbay) +"bIl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIm" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bIn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIo" = ( +/obj/structure/sign/goldenplaque{ + desc = "Done No Harm."; + name = "Best Doctor 2552"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Equipment Storage Hallway"; + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bIq" = ( +/obj/machinery/door/airlock/research{ + name = "Research Shuttle Dock" + }, +/obj/machinery/door/firedoor, +/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/techfloor/grid, +/area/exodus/research/docking) +"bIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay3) +"bIs" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "escape_pod_4_berth"; + pixel_x = -25; + pixel_y = 25; + tag_door = "escape_pod_4_berth_hatch" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bIu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bIw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/research_port) +"bIx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/server) +"bIy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bIz" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bIB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bID" = ( +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bIE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc/critical{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/exodus/research/docking) +"bIG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bIH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bII" = ( +/obj/structure/disposalpipe/segment, +/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/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bIJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/storage) +"bIK" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/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/exodus/maintenance/engineering) +"bIL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bIM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"bIN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bIO" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bIP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bIQ" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/turret_protected/ai_cyborg_station) +"bIR" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bIS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bIT" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bIU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/reception) +"bIV" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"bIW" = ( +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/obj/structure/table/steel, +/obj/item/crowbar/brace_jack, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bIX" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bIY" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bIZ" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "cargo_mining_conveyor"; + id_tag = "cargo_mining_conveyor" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/quartermaster/miningdock) +"bJb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargo_mining_conveyor"; + id_tag = "cargo_mining_conveyor" + }, +/turf/simulated/floor/reinforced, +/area/exodus/quartermaster/miningdock) +"bJc" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJd" = ( +/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/steel_grid, +/area/exodus/quartermaster/miningdock) +"bJe" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJf" = ( +/obj/item/material/clipboard, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stamp/denied, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJg" = ( +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/device/eftpos{ + eftpos_name = "Quartermaster EFTPOS scanner" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJh" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bJi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo - Quartermaster's Office"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bJj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bJk" = ( +/obj/machinery/navbeacon/QM, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJl" = ( +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJm" = ( +/obj/structure/disposalpipe/segment, +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJn" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJp" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJq" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJr" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJs" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJt" = ( +/obj/machinery/hologram/holopad, +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJu" = ( +/obj/machinery/navbeacon/AIW, +/obj/structure/disposalpipe/segment, +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJv" = ( +/obj/structure/cable{ + 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_grid, +/area/exodus/hallway/primary/central_three) +"bJw" = ( +/obj/machinery/navbeacon/AIE, +/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_grid, +/area/exodus/hallway/primary/central_three) +"bJx" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJy" = ( +/obj/structure/cable{ + 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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bJA" = ( +/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/steel_grid, +/area/exodus/hallway/primary/central_two) +"bJB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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_grid, +/area/exodus/hallway/primary/central_two) +"bJD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bJE" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/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" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bJF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/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/techfloor/grid, +/area/exodus/maintenance/research_port) +"bJG" = ( +/obj/machinery/navbeacon/CHE, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bJH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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_grid, +/area/exodus/hallway/primary/central_two) +"bJI" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bJJ" = ( +/obj/structure/table/standard, +/obj/item/defibrillator/loaded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bJK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/research{ + name = "Robotics Lab" + }, +/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/techfloor/grid, +/area/exodus/research/robotics) +"bJL" = ( +/obj/machinery/button/blast_door{ + id_tag = "acute1"; + name = "EMT Storage Privacy Shutters"; + pixel_x = 26; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bJM" = ( +/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/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bJN" = ( +/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/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bJO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "CMO's Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/cmo) +"bJP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bJQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bJR" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bJW" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bJX" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bJY" = ( +/obj/machinery/light, +/obj/machinery/constructable_frame/computerframe, +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"bJZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 26 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"bKa" = ( +/obj/machinery/alarm/server{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bKb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Server Room"; + opacity = 1 + }, +/obj/machinery/door/window/eastleft{ + name = "Server Room" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/server) +"bKc" = ( +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bKe" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/server_room{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/server) +"bKf" = ( +/obj/item/frame/light, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bKg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/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, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/cargo) +"bKh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/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/techfloor/grid, +/area/exodus/maintenance/research_port) +"bKi" = ( +/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/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bKj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bKk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bKl" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_shuttle) +"bKm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bKn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bKo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bKp" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKq" = ( +/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/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKr" = ( +/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/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKs" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/test_area) +"bKt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/test_area) +"bKu" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/test_area) +"bKv" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bKw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bKy" = ( +/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/steel_grid, +/area/exodus/hallway/primary/starboard) +"bKz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/white, +/area/exodus/research/xenobiology/xenoflora) +"bKB" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Research" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology/xenoflora) +"bKC" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_cyborg_station) +"bKD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bKE" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bKF" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bKG" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/engineering/engineering_monitoring) +"bKH" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"bKK" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bKL" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKN" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKP" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bKQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKS" = ( +/obj/structure/disposalpipe/segment, +/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/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKT" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bKV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bKW" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bKX" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bKZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLa" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bLb" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -32; + pixel_z = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = -32; + pixel_z = -8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLf" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bLg" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Janitor Closet"; + sort_type = "Janitor Closet" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"bLi" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"bLk" = ( +/obj/effect/floor_decal/corner/purple, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bLl" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"bLm" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bLn" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engineering_monitoring) +"bLo" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/genetics/cloning) +"bLp" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bLq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLr" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"bLs" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "EMT Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bLu" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bLv" = ( +/obj/machinery/atmospherics/unary/heater{ + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"bLw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bLy" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bLz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bLA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLC" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bLE" = ( +/obj/machinery/constructable_frame/computerframe, +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLF" = ( +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLG" = ( +/obj/structure/window/reinforced, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bLI" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bLJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology) +"bLK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bLL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bLM" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "eng_eva_airlock"; + name = "Engineering Airlock Console"; + pixel_y = 25; + tag_airpump = "eng_eva_pump"; + tag_chamber_sensor = "eng_eva_sensor"; + tag_exterior_door = "eng_eva_outer"; + tag_interior_door = "eng_eva_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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/plating, +/area/exodus/maintenance/research_shuttle) +"bLO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/button/blast_door{ + id_tag = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -7; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bLP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bLQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bLR" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/item/stool/padded, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bLS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bLT" = ( +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bLU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bLV" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_y = 22 + }, +/obj/machinery/computer/modular/preset/civilian, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bLW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bLX" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/paint/brown, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "minprot"; + name = "protective shutters" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"bLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bLZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bMb" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/stock_parts/circuitboard/teleporter, +/obj/item/stock_parts/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bMc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bMd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bMe" = ( +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bMf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bMh" = ( +/obj/structure/table/standard, +/obj/item/pen{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + 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/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bMm" = ( +/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 = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/mining{ + id_tag = "qmdoor"; + name = "Quartermaster" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/qm) +"bMo" = ( +/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/exodus/quartermaster/qm) +"bMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bMq" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bMr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bMs" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/paint/brown, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "minprot"; + name = "protective shutters" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"bMt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bMu" = ( +/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/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bMv" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bMw" = ( +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"bMx" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/random/medical, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -22 + }, +/obj/item/taperoll/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bMy" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bMz" = ( +/obj/machinery/button/blast_door{ + id_tag = "acutesep"; + name = "Acute Separation Shutters"; + pixel_y = -25 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay EMT Storage"; + dir = 1 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bMA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bMB" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Starboard Corridor"; + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bMC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bMD" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay2) +"bMF" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/mask/gas, +/obj/item/clothing/accessory/stethoscope, +/obj/item/storage/belt/medical, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/flashlight/pen, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bMG" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bMH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Monitoring Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engineering_monitoring) +"bMJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "staffroom"; + name = "Staff Room Shutters Control"; + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMK" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/medbreak) +"bML" = ( +/obj/machinery/washing_machine, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Break Room" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMM" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMN" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eng_eva_inner"; + name = "Engineering EVA Internal Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"bMO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/misc_lab) +"bMP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/library) +"bMQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase/manuals/medical, +/obj/item/book/manual/stasis, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMR" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/item/book/manual/medical_diagnostics_manual{ + pixel_y = 7 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/phone/medbay{ + name = "break room emergency phone" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bMS" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/atmos_control) +"bMT" = ( +/obj/item/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bMU" = ( +/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 = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bMV" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bMW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bMX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bMY" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bMZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera/network/research{ + c_tag = "Research Division Central"; + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bNa" = ( +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"bNb" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bNc" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bNd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bNe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bNf" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bNh" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bNj" = ( +/obj/machinery/door/airlock/external{ + name = "Toxins Test Chamber" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bNk" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"bNl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bNm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Test Chamber North"; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bNn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/filemanager{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/server) +"bNp" = ( +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"bNq" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"bNr" = ( +/obj/machinery/shipsensors/weak, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"bNs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bNt" = ( +/obj/structure/disposalpipe/segment, +/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/steel_grid, +/area/exodus/quartermaster/miningdock) +"bNv" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bNw" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/cargo) +"bNx" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/cargo) +"bNy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/storage/tech) +"bNz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"bNC" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/stock_parts/circuitboard/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bND" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bNE" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bNF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/hallway/primary/aft) +"bNG" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster's Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNH" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/material/coin/silver{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/material/coin/silver, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNI" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"bNJ" = ( +/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/steel_grid, +/area/exodus/hallway/primary/aft) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bNL" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNM" = ( +/obj/structure/closet/jcloset, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNN" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNO" = ( +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera/network/security{ + c_tag = "Custodial Closet" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bNQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_three) +"bNR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bNT" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bNU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/engineering) +"bNV" = ( +/obj/item/camera_assembly, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"bNW" = ( +/obj/machinery/door/window/westright{ + name = "Janitoral Delivery" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNX" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bNY" = ( +/obj/machinery/navbeacon/Janitor, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/janitor) +"bNZ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "acutesep"; + name = "Acute Separation Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bOa" = ( +/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/exodus/medical/medbay) +"bOb" = ( +/obj/machinery/door/airlock/maintenance, +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_two) +"bOc" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bOd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "CMO's Office" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/cmo) +"bOe" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bOf" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bOg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "CMO's Office" + }, +/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/techfloor/grid, +/area/exodus/crew_quarters/heads/cmo) +"bOh" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bOi" = ( +/obj/structure/disposalpipe/segment, +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bOj" = ( +/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/white, +/area/exodus/medical/medbay2) +"bOk" = ( +/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 = 10 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOl" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Staff Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay2) +"bOm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOn" = ( +/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/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Starboard Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bOp" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bOr" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOs" = ( +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOt" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOy" = ( +/obj/structure/table/standard, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bOz" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bOA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bOB" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bOC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bOD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bOE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bOF" = ( +/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/white, +/area/exodus/research) +"bOG" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/scientist, +/obj/item/tank/air, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOH" = ( +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOI" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Starboard - Central West" + }, +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bOJ" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOK" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/megaphone, +/obj/item/stamp/rd, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bOL" = ( +/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/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bOM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/security{ + c_tag = "Engineering - Technical Storage" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bON" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bOO" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/mixing) +"bOP" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/prepainted, +/area/exodus/research/test_area) +"bOQ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOR" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bOS" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor, +/area/exodus/construction) +"bOU" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 6; + tag_west = 2; + use_power = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/omni/mixer{ + tag_east = 1; + tag_east_con = 0.5; + tag_south = 1; + tag_south_con = 0.5; + tag_west = 2; + use_power = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bOX" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/maintenance/cargo) +"bOY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bOZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/exodus/maintenance/cargo) +"bPa" = ( +/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/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"bPb" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"bPc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/mining, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"bPd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/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/techfloor/grid, +/area/exodus/medical/virology/access) +"bPe" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/exodus/construction) +"bPf" = ( +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPi" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bPj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bPk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"bPl" = ( +/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/white, +/area/exodus/medical/virology/access) +"bPm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bPn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bPo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/aft) +"bPp" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bPq" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bPr" = ( +/obj/item/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPs" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPt" = ( +/turf/simulated/wall/prepainted, +/area/exodus/janitor) +"bPu" = ( +/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/exodus/janitor) +"bPv" = ( +/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/tiled/steel_grid, +/area/exodus/janitor) +"bPw" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Room B"; + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bPx" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bPy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/starboardsolar) +"bPz" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPA" = ( +/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/tiled/steel_grid, +/area/exodus/janitor) +"bPB" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bPC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bPD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/button/blast_door{ + id_tag = "acutesep"; + name = "Acute Separation Shutters"; + pixel_y = 25 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Acute" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bPE" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + name = "Acute Treatment" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bPF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -9 + }, +/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/medbay{ + c_tag = "Medbay Port Corridor"; + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bPG" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -9 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + name = "Chief Medical Officer RC"; + pixel_x = -34; + pixel_y = 2 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay - CMO's Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPH" = ( +/obj/item/device/radio{ + name = "medbay emergency radio link" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPI" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/device/megaphone, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPJ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bPK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bPL" = ( +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bPM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/stool/padded, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPO" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/research_port) +"bPP" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/stool/padded, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPQ" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPR" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bPS" = ( +/obj/machinery/sparker{ + id_tag = "Xenobio"; + pixel_x = -25 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPU" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + icon_state = "map_injector"; + id_tag = "n2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPV" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/machinery/cell_charger, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bPW" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"bPX" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bPY" = ( +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bPZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_shuttle) +"bQa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Monitoring Room"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bQb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Waste to Scrubbers" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQg" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQh" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQi" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQj" = ( +/obj/item/module/power_control, +/obj/item/airlock_electronics, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQk" = ( +/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/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQm" = ( +/obj/machinery/button/mass_driver{ + id_tag = "toxinsdriver"; + pixel_y = 24 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Launch Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQn" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bQo" = ( +/obj/machinery/button/blast_door{ + id_tag = "mixvent"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5 + }, +/obj/machinery/button/ignition{ + id_tag = "mixingsparker"; + pixel_x = -25; + pixel_y = -5 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bQp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engineering) +"bQq" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bQr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bQs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bQt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bQu" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"bQv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bQw" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "HoP Office"; + sort_type = "HoP Office" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bQx" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/plating, +/area/exodus/maintenance/cargo) +"bQy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/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/techfloor/grid, +/area/exodus/medical/virology/access) +"bQz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/white, +/area/exodus/medical/virology/access) +"bQB" = ( +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/table/steel, +/obj/item/device/scanner/plant, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQC" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/tech) +"bQD" = ( +/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/plating, +/area/exodus/maintenance/research_port) +"bQE" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/insulated, +/obj/item/device/t_scanner, +/obj/item/clothing/glasses/meson, +/obj/item/device/multitool, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQF" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/yellow/full, +/obj/machinery/vending/wallmed1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bQG" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bQH" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQI" = ( +/obj/machinery/camera/network/security{ + c_tag = "Engineering - Secure Technical Storage" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQJ" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/computer/tesla_link, +/obj/item/stock_parts/computer/network_card/advanced, +/obj/item/stock_parts/computer/nano_printer, +/obj/item/stock_parts/computer/hard_drive, +/obj/item/stock_parts/computer/card_slot, +/obj/item/stock_parts/computer/hard_drive/portable, +/obj/item/stock_parts/computer/processor_unit, +/obj/item/stock_parts/computer/ai_slot, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQK" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bQL" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bQM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bQN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bQO" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + pixel_y = -29 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQP" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQQ" = ( +/obj/structure/janitorialcart, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQS" = ( +/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/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQT" = ( +/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, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQU" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bQV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQW" = ( +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/janitor) +"bQY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22; + pixel_y = -32 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bQZ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bRb" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "acute2"; + name = "Acute Privacy Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay) +"bRc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "cmooffice"; + name = "CMO Privacy Shutters"; + pixel_x = 38; + pixel_y = 21 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control switch for the CMO's office."; + id_tag = "cmodoor"; + name = "CMO Office Door Control"; + pixel_x = 28; + pixel_y = 21 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -15; + pixel_y = 38 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "medbayquar"; + name = "Medbay Emergency Lockdown Control"; + pixel_x = -15; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/keycard_auth{ + pixel_x = 16; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bRe" = ( +/obj/item/folder/white{ + pixel_y = 10 + }, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stamp/cmo, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bRf" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bRg" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bRh" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 36 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id_tag = "isoA_window_tint"; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bRi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bRj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_a) +"bRk" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bRl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 36 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id_tag = "isoB_window_tint"; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bRm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bRn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_b) +"bRo" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bRp" = ( +/obj/structure/table/standard, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bRq" = ( +/obj/machinery/door/window/eastright{ + name = "Engineering Delivery" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bRr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/storage) +"bRs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bRt" = ( +/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/white, +/area/exodus/research) +"bRu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRv" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bRw" = ( +/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 = 5 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRy" = ( +/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/atmospherics/binary/pump{ + dir = 4; + name = "Heater to Waste" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRz" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Heated to Waste" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRB" = ( +/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/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRE" = ( +/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/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRG" = ( +/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{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bRI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRJ" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bRL" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"bRM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bRP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bRR" = ( +/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/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bRS" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bRT" = ( +/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" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bRV" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/item/rig/industrial/equipped, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bRW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Atmospherics"; + sort_type = "Atmospherics"; + sortdir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bRX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bRY" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bRZ" = ( +/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/plating, +/area/exodus/storage/tech) +"bSa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bSb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bSc" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bSd" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bSe" = ( +/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/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bSf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Primary Hallway Aft"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bSg" = ( +/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/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bSh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bSi" = ( +/obj/machinery/papershredder, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bSj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bSk" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bSl" = ( +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bSm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bSn" = ( +/obj/machinery/button/blast_door{ + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + pixel_x = -6; + pixel_y = -25 + }, +/obj/machinery/button/blast_door{ + id_tag = "acute2"; + name = "Acute Treatment Privacy Shutters"; + pixel_x = 6; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"bSo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay) +"bSp" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bSq" = ( +/obj/machinery/light, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bSr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bSs" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/item/stool/padded, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bSu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay2) +"bSv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/random_multi/single_item/runtime, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSw" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSx" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart{ + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/diona{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bSy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Examination Room" + }, +/obj/structure/bed/chair/wheelchair, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bSz" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bSA" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bSB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/structure/curtain/open/privacy, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"bSC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bSD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bSE" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Room C"; + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"bSF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bSG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bSH" = ( +/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/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bSI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bSJ" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bSK" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/crate/solar, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bSL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSM" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bSN" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSO" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSQ" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bST" = ( +/obj/structure/dispenser, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/break_room) +"bSV" = ( +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bSW" = ( +/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/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bSX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Launch Room Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bSY" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology/xenoflora) +"bSZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bTa" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bTb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bTc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bTd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bTh" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bTi" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bTj" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bTk" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Toxins Lab" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"bTl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/medical{ + name = "Hygiene Facilities" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bTm" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"bTn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bTo" = ( +/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/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bTp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bTq" = ( +/obj/structure/disposalpipe/segment, +/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/steel_grid, +/area/exodus/hallway/primary/aft) +"bTr" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/storage/tech) +"bTs" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bTt" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bTu" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bTw" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bTx" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"bTy" = ( +/obj/machinery/door/firedoor, +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTz" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTA" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"bTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bTD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bTE" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bTF" = ( +/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/exodus/maintenance/engineering) +"bTG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bTH" = ( +/obj/structure/table/standard, +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bTI" = ( +/obj/structure/iv_drip, +/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/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bTJ" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay4) +"bTK" = ( +/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/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_a) +"bTL" = ( +/obj/structure/table/standard, +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bTM" = ( +/obj/structure/iv_drip, +/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/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bTN" = ( +/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/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_b) +"bTO" = ( +/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/plating, +/area/exodus/maintenance/medbay) +"bTP" = ( +/obj/machinery/shieldwallgen{ + anchored = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bTQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bTR" = ( +/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" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bTS" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/southright{ + name = "Test Chamber" + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Test Chamber" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bTT" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/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/plating, +/area/exodus/maintenance/medbay) +"bTU" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/southleft{ + name = "Test Chamber" + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/misc_lab) +"bTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bTW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bTX" = ( +/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/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bTY" = ( +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/vending/cigarette{ + dir = 1; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"bTZ" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_4) +"bUa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bUc" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"bUe" = ( +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bUf" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bUg" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"bUh" = ( +/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/exodus/engineering) +"bUi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bUj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bUk" = ( +/obj/machinery/disposal/deliveryChute{ + name = "ore chute" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"bUl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bUm" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/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/exodus/engineering) +"bUn" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_starboard) +"bUo" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/tech) +"bUp" = ( +/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/tiled/steel_grid, +/area/exodus/engineering) +"bUq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bUr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"bUs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bUt" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUu" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod_4) +"bUv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/cargo) +"bUw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUx" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUy" = ( +/obj/structure/disposalpipe/segment, +/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/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bUz" = ( +/obj/machinery/button/blast_door{ + id_tag = "scanhide"; + name = "Diagnostics Room Separation Shutters"; + pixel_x = -6; + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer" + }, +/obj/machinery/button/blast_door{ + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + pixel_x = 6; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bUA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance" + }, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/janitor) +"bUB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bUC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bUD" = ( +/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, +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUE" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Lounge" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUG" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bUH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUJ" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUK" = ( +/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/exodus/maintenance/engineering) +"bUL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"bUM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bUN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 4; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUO" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark/monotile, +/area/exodus/gateway) +"bUP" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bUQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUR" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUU" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bUV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bUW" = ( +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bUX" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bUY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 1; + frequency = 1380; + id_tag = "escape_pod_4"; + pixel_y = -25; + tag_door = "escape_pod_4_hatch" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_4) +"bUZ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/exam_room) +"bVa" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"bVb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Sub-Acute A" + }, +/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/techfloor/grid, +/area/exodus/medical/patient_wing) +"bVd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Sub-Acute B" + }, +/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/techfloor/grid, +/area/exodus/medical/patient_wing) +"bVe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/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/tiled/white, +/area/exodus/research/misc_lab) +"bVg" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/clothing/glasses/science, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVh" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/ignition{ + id_tag = "Xenobio"; + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVi" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_wing) +"bVj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVl" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVm" = ( +/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/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVn" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/rig/ce/equipped, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bVo" = ( +/obj/structure/table/rack, +/obj/item/rig/hazmat/equipped, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"bVp" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bVq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bVr" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bVs" = ( +/obj/machinery/sparker{ + id_tag = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + icon_state = "map_injector"; + id_tag = "air_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bVt" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bVu" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/book/manual/supermatter_engine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bVv" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Airlock" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bVw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"bVy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bVz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + pixel_y = -25 + }, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bVA" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "toxinsdriver" + }, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bVB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Engine Waste" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/empty_canister, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"bVE" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bVF" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bVG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/exodus/research/mixing) +"bVH" = ( +/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/plating, +/area/exodus/maintenance/research_starboard) +"bVI" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bVJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Virology Access" + }, +/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/techfloor/grid, +/area/exodus/medical/virology/access) +"bVK" = ( +/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/exodus/research/xenobiology) +"bVL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Toxins Test Chamber East"; + dir = 8; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bVM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/light/small/emergency, +/obj/effect/shuttle_landmark/escape_pod/start/pod4, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_pod_4) +"bVN" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_4_hatch"; + name = "Escape Pod Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod_4) +"bVO" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_pod_4) +"bVP" = ( +/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/exodus/research/xenobiology) +"bVQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bVR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bVS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bVT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bVU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/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/exodus/maintenance/cargo) +"bVV" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"bVW" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bVX" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"bVY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bVZ" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "toxin_test_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "toxin_test_sensor"; + pixel_y = 16 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8; + icon_state = "warningcee" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bWa" = ( +/obj/machinery/navbeacon/Medbay, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/medical/sleeper) +"bWb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWf" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/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/exodus/medical/medbay4) +"bWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bWh" = ( +/obj/structure/disposalpipe/segment, +/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/white, +/area/exodus/medical/medbay4) +"bWi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWj" = ( +/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/tiled/white, +/area/exodus/medical/medbay4) +"bWk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWl" = ( +/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/exodus/medical/medbay4) +"bWm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWn" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/mixing) +"bWp" = ( +/obj/structure/disposalpipe/segment, +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWs" = ( +/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/tiled/white, +/area/exodus/medical/medbay4) +"bWt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWw" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWx" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWy" = ( +/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, +/obj/effect/floor_decal/sign/a, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/sign/b, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bWC" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Toxins Lab" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/mixing) +"bWD" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWE" = ( +/obj/machinery/button/blast_door{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 6; + pixel_y = 30 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWG" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWI" = ( +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/structure/table/steel, +/obj/item/device/scanner/health, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"bWJ" = ( +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bWK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Miscellaneous Reseach Room" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bWL" = ( +/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/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bWM" = ( +/obj/machinery/light, +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/cmo) +"bWN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bWP" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bWR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bWS" = ( +/obj/machinery/air_sensor{ + id_tag = "toxins_mixing_exterior" + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bWT" = ( +/obj/structure/cable/green{ + 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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bWU" = ( +/obj/machinery/door/airlock/glass/research{ + autoclose = 0; + id_tag = "tox_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bWV" = ( +/obj/machinery/door/airlock/maintenance, +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/aft) +"bWW" = ( +/obj/structure/hygiene/shower{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bWX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "engine_room_airlock"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bWY" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bWZ" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_airlock) +"bXa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"bXb" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXc" = ( +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + name = "west bump"; + pixel_x = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bXd" = ( +/obj/machinery/computer/modular/preset/engineering, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + name = "Chief Engineer RC"; + pixel_y = 34 + }, +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bXe" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bXf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Workshop"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -10 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"bXg" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bXh" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bXi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bXj" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_wing/washroom) +"bXk" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + frequency = 1380; + id_tag = "robotics_solar_airlock"; + pixel_y = -25; + tag_airpump = "robotics_solar_pump"; + tag_chamber_sensor = "robotics_solar_sensor"; + tag_exterior_door = "robotics_solar_outer"; + tag_interior_door = "robotics_solar_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "robotics_solar_sensor"; + pixel_x = 12; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "robotics_solar_pump" + }, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"bXl" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXm" = ( +/obj/effect/shuttle_landmark/supply/station, +/turf/space, +/area/space) +"bXn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/mixing) +"bXo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXp" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_starboard) +"bXr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"bXs" = ( +/obj/machinery/atmospherics/unary/tank/oxygen{ + volume = 3200 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bXt" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bXv" = ( +/obj/machinery/atmospherics/unary/tank/hydrogen{ + volume = 3200 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bXw" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bXx" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology) +"bXy" = ( +/obj/structure/disposalpipe/junction{ + 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" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXz" = ( +/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/white, +/area/exodus/medical/medbay4) +"bXA" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "CMO Office"; + sort_type = "CMO Office" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXB" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bXC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXD" = ( +/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" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/junction{ + 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/exodus/medical/medbay4) +"bXG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXH" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Hallway Southwest"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bXI" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/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/sign/p, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXJ" = ( +/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/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXK" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXL" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bXM" = ( +/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, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXO" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXQ" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXR" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXS" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/sign/c, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bXT" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bXU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bXV" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bXY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/research) +"bXZ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/research) +"bYa" = ( +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/exodus/research/misc_lab) +"bYb" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bYc" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/research) +"bYd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/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/exodus/maintenance/research_port) +"bYe" = ( +/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/exodus/research/misc_lab) +"bYf" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_port) +"bYg" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/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/exodus/maintenance/research_port) +"bYh" = ( +/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/exodus/research/misc_lab) +"bYi" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bYj" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Miscellaneous Reseach Room" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bYk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bYl" = ( +/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, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bYm" = ( +/obj/machinery/light_switch{ + pixel_x = 7; + pixel_y = -23 + }, +/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/exodus/research/misc_lab) +"bYn" = ( +/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 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYo" = ( +/obj/machinery/light, +/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{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYp" = ( +/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/white, +/area/exodus/research) +"bYq" = ( +/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/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYr" = ( +/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/camera/network/research{ + c_tag = "Research Division South"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYt" = ( +/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/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"bYu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bYv" = ( +/obj/machinery/sparker{ + id_tag = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + 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/reinforced, +/area/exodus/research/mixing) +"bYw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/mixing) +"bYy" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"bYz" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"bYA" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"bYB" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bYC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bYD" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24 + }, +/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/techfloor/grid, +/area/exodus/medical/virology) +"bYE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"bYF" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Hallway Southeast"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bYG" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"bYH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bYI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/crew_quarters/heads/chief) +"bYJ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"bYK" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"bYL" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bYM" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "SMES Access" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_smes) +"bYN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"bYO" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bYP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bYQ" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"bYS" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"bYU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYW" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYX" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"bYY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Supplies" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/break_room) +"bYZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZa" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"bZb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -20; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZc" = ( +/obj/structure/sign/warning/pods, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_eva) +"bZd" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZe" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/sleep/engi_wash) +"bZf" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/atmos_control) +"bZg" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/atmos_control) +"bZh" = ( +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "scanhideside"; + name = "Diagnostics Room Privacy Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZo" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"bZq" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay4) +"bZr" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Voidsuits" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"bZs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Ward" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"bZt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health" + }, +/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/techfloor/grid, +/area/exodus/medical/psych) +"bZu" = ( +/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/tiled/white, +/area/exodus/medical/patient_wing) +"bZv" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Patient Hallway - Port"; + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bZx" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"bZy" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/biostorage) +"bZA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/patient_c) +"bZB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Secondary Storage" + }, +/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/techfloor/grid, +/area/exodus/medical/biostorage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"bZE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Sub-Acute 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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_c) +"bZF" = ( +/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/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"bZG" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"bZH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"bZI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZK" = ( +/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/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZL" = ( +/obj/machinery/disposal, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Miscellaneous"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/closet/wardrobe/science_white, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"bZO" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/bed/roller, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Scanning"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"bZP" = ( +/obj/effect/shuttle_landmark/escape_shuttle/station, +/turf/space, +/area/space) +"bZQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Drone Fabrication"; + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"bZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"bZS" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bZT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bZU" = ( +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"bZV" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Voidsuits" + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"bZW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"bZX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"bZY" = ( +/obj/structure/table/reinforced, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"bZZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cac" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cad" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/flame/lighter/zippo, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cae" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + pixel_x = 36; + pixel_y = 18 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "cedoor"; + name = "Office Door Control"; + pixel_x = 26; + pixel_y = 17 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"caf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cag" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cah" = ( +/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/steel_grid, +/area/exodus/engineering/foyer) +"cai" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cal" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/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 + }, +/obj/machinery/door/airlock/command{ + id_tag = "cedoor"; + name = "Chief Engineer" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/chief) +"can" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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_grid, +/area/exodus/engineering/foyer) +"cao" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cap" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"caq" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/sleep/engi_wash) +"car" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"cas" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "CE Office"; + sort_type = "CE Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cat" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cau" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cav" = ( +/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 = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"caw" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cax" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 4; + icon_state = "comfychair_preview" + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cay" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + name = "Diagnostics Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"caz" = ( +/obj/machinery/power/apc/high{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"caA" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology) +"caB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"caC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"caD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"caE" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/ward) +"caF" = ( +/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{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"caI" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/psych) +"caJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Miscellaneous Reseach Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/research) +"caK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"caL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"caM" = ( +/obj/structure/iv_drip, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"caN" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"caO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"caP" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"caQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caR" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "cubicle1"; + name = "Cubicle 1" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/patient_wing/washroom) +"caS" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caU" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"caV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"caW" = ( +/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/white, +/area/exodus/medical/biostorage) +"caX" = ( +/obj/structure/table/standard, +/obj/machinery/computer/modular/preset/medical, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"caY" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"caZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cba" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cbb" = ( +/obj/structure/iv_drip, +/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/pink/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cbc" = ( +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cbd" = ( +/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{ + dir = 9 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cbe" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cbf" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"cbg" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/machinery/button/blast_door{ + id_tag = "disvent"; + name = "Incinerator Vent Control"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cbi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Research" + }, +/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/techfloor/grid, +/area/exodus/research) +"cbj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cbk" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cbl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"cbm" = ( +/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/exodus/medical/virology/access) +"cbn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Diagnostics Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"cbo" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xeno_airlock_control"; + name = "Xenobiology Access Console"; + pixel_x = 8; + pixel_y = 22; + tag_exterior_door = "xeno_airlock_exterior"; + tag_interior_door = "xeno_airlock_interior" + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cbp" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_y = 28 + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology North" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cbq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cbr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"cbs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cbt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cbu" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "eng_eva_inner"; + name = "Engineering EVA Internal Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/atmos_control) +"cbv" = ( +/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/steel_grid, +/area/exodus/maintenance/atmos_control) +"cbw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/remains/robot, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cbx" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cby" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbz" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for engine core."; + id_tag = "EngineVent"; + name = "Engine Ventillatory Control"; + pixel_x = -24; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/alternate/door/bolts{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + id_tag = "engine_access_hatch"; + name = "Engine Hatch Bolt Control"; + pixel_x = -24; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbA" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "SMES Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_monitoring) +"cbB" = ( +/obj/structure/table/reinforced, +/obj/item/material/clipboard, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/welding/superior, +/obj/item/storage/fancy/cigarettes, +/obj/item/book/manual/supermatter_engine, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbC" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Engineer's Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbD" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Voidsuits" + }, +/obj/item/clothing/suit/space/void/engineering/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cbE" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbF" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cbG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cbH" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/break_room) +"cbI" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgeryobs) +"cbJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cbK" = ( +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + dir = 4; + frequency = 1380; + 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/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cbL" = ( +/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/exodus/maintenance/research_starboard) +"cbM" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cbN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cbO" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space) +"cbP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"cbQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Surgery Access"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cbR" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cbS" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cbT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cbU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cbV" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cbW" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + name = "Grenade Crate"; + opened = 1 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/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, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cbX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cbY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - CE's Office"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cbZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"ccb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"ccc" = ( +/obj/structure/curtain/open/shower, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "shower door" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"ccd" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/research) +"cce" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + id_tag = "Research Subgrid"; + name = "Powernet Sensor - Research Subgrid"; + name_tag = "Research Subgrid" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"ccf" = ( +/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/steel_grid, +/area/exodus/engineering/engine_monitoring) +"ccg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cch" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cci" = ( +/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/exodus/maintenance/research_port) +"cck" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + id_tag = "engine_airlock_exterior"; + name = "Engine Airlock Exterior" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_airlock) +"ccl" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "virologyq_airlock_exterior"; + locked = 1; + name = "Virology Quarantine Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "virologyq_airlock_control"; + name = "Virology Quarantine Access Button"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology) +"ccm" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ccn" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"cco" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "hop_office_desk"; + name = "HoP Office Privacy Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Head of Personnel's Desk" + }, +/obj/machinery/door/window/westleft{ + name = "Reception Window" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/hop) +"ccp" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_engineering) +"ccs" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Research" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cct" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/exodus/maintenance/cargo) +"ccu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ccv" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"ccy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"ccA" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Research Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"ccB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/atmos_control) +"ccC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"ccD" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"ccE" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/patient_wing/washroom) +"ccH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccI" = ( +/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/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccJ" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virologyq_airlock_control"; + name = "Virology Quarantine Access Console"; + pixel_x = -8; + pixel_y = -22; + tag_exterior_door = "virologyq_airlock_exterior"; + tag_interior_door = "virologyq_airlock_interior" + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ccK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "Chief Engineer" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/chief) +"ccL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ccM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccN" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"ccO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"ccP" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/prepainted, +/area/exodus/medical/virology/access) +"ccQ" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"ccR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ccT" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccV" = ( +/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/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccW" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Engineering Break Room"; + sort_type = "Engineering Break 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{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ccX" = ( +/obj/machinery/door/firedoor, +/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/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 8; + name = "Engineering Break Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/break_room) +"ccY" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"ccZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Washroom" + }, +/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/techfloor/grid, +/area/exodus/engineering/break_room) +"cda" = ( +/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/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdb" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -20; + pixel_y = -21 + }, +/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 = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdc" = ( +/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/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cde" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdf" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cdg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Surgery Observation" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation Room" + }, +/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/techfloor/grid, +/area/exodus/medical/medbay4) +"cdk" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 22 + }, +/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/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cdl" = ( +/obj/structure/disposalpipe/segment, +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cdm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/medbay4) +"cdn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/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/exodus/medical/ward) +"cdo" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Ward" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"cdp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cdr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cds" = ( +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cdt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cdu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cdv" = ( +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cdw" = ( +/obj/structure/table/standard, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cdx" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cdy" = ( +/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/wood/walnut, +/area/exodus/engineering/break_room) +"cdz" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cdA" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -36 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id_tag = "isoC_window_tint"; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cdB" = ( +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_c) +"cdC" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cdD" = ( +/obj/structure/flora/grass/brown, +/obj/structure/closet/crate/hydroponics/beekeeping, +/turf/simulated/floor/grass, +/area/exodus/hydroponics/garden) +"cdE" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cdF" = ( +/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/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cdG" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cdH" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cdI" = ( +/obj/item/hand_labeler, +/obj/structure/table/glass, +/obj/machinery/vending/wallmed1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cdJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/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/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cdK" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/machinery/cooker/candy, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"cdL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology/xenoflora_storage) +"cdM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/research) +"cdO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology) +"cdP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/sublevel_access) +"cdQ" = ( +/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/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cdR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cdS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/research/xenobiology/xenoflora) +"cdU" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cdW" = ( +/obj/structure/sign/warning/secure_area, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/exodus/engineering) +"cdX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/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/exodus/maintenance/research_starboard) +"cdY" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cdZ" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/exodus/engineering/break_room) +"cea" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engineering) +"ceb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Break Room"; + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cec" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"ced" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cee" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"cef" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"ceg" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "toxin_test_airlock"; + pixel_y = 25; + tag_airpump = "toxin_test_pump"; + tag_chamber_sensor = "toxin_test_sensor"; + tag_exterior_door = "toxin_test_outer"; + tag_interior_door = "toxin_test_inner" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4; + icon_state = "warningcee" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ceh" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + name = "Atmospherics Voidsuits" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/atmos/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cej" = ( +/turf/simulated/wall/prepainted, +/area/exodus/construction) +"cek" = ( +/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/walnut, +/area/exodus/engineering/break_room) +"cel" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/button/windowtint{ + pixel_x = -25 + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 8 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "mentaldoor"; + name = "office door control"; + pixel_x = -34; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/exodus/medical/psych) +"cem" = ( +/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/wood/walnut, +/area/exodus/engineering/break_room) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ceo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cep" = ( +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor, +/area/exodus/construction) +"ceq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ces" = ( +/obj/machinery/door/airlock/external{ + name = "Toxins Test Chamber" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cet" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"ceu" = ( +/obj/machinery/light, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Test Chamber South"; + dir = 1; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/airless, +/area/exodus/research/test_area) +"cev" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cew" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cex" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "merchant_shuttle_station_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_shuttle_station_dock"; + pixel_y = 25; + tag_airpump = "merchant_shuttle_station_vent"; + tag_chamber_sensor = "merchant_shuttle_station_sensor"; + tag_exterior_door = "merchant_shuttle_station_exterior"; + tag_interior_door = "merchant_shuttle_station_interior" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_shuttle_station_sensor"; + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/fore) +"cey" = ( +/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" + }, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cez" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ceA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ceB" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ceD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceG" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceH" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "merchant_shuttle_station_dock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ceI" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "merchant_shuttle_station_interior"; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/fore) +"ceJ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"ceK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"ceL" = ( +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"ceM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"ceN" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ceO" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceP" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceQ" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Atmospherics Hardsuits" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/space/void/atmos/prepared, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ceR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceS" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"ceT" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/holosign/surgery, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"ceU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/holosign/surgery, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + id_tag = "Surgery"; + name = "Pre-Op Prep Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/medbay4) +"ceV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"ceW" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology) +"ceX" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Mental Health Room"; + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"ceY" = ( +/obj/machinery/vending/medical{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"ceZ" = ( +/obj/machinery/navbeacon/AftH, +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfa" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cdeathalarm_kit, +/obj/item/bodybag/cryobag{ + pixel_x = -3 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -3 + }, +/obj/item/stack/nanopaste, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cfb" = ( +/obj/structure/table/standard, +/obj/item/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cfd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled/white, +/area/exodus/research/misc_lab) +"cfe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cff" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cfg" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology/xenoflora) +"cfh" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/closet/secure_closet/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cfi" = ( +/obj/item/crowbar, +/obj/item/clothing/gloves/thick, +/obj/item/clothing/gloves/thick, +/obj/item/storage/box/lights/mixed, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cfj" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/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/insulated, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cfk" = ( +/obj/structure/closet/l3closet, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/head/bio_hood/general, +/obj/item/clothing/head/bio_hood/general, +/obj/item/clothing/head/bio_hood/general, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cfl" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cfm" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"cfn" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"cfo" = ( +/obj/machinery/vending/hydronutrients{ + categories = 3 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfp" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfq" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_io, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cfr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/airless, +/area/space) +"cfs" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cft" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/smartfridge, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cfv" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "robotics_solar_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/portsolar) +"cfw" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cfx" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cfy" = ( +/obj/item/clothing/mask/smokable/cigarette, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cfz" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 4; + tag_west = 2; + use_power = 0 + }, +/obj/effect/engine_setup/filter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cfA" = ( +/obj/machinery/light/small, +/turf/simulated/floor/airless, +/area/exodus/research/test_area) +"cfB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cfC" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "engine_room_airlock"; + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cfD" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Transfer - Upper"; + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cfE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/sublevel_access) +"cfF" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology/access) +"cfG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cfH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cfI" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "toxin_test_inner"; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_starboard) +"cfJ" = ( +/obj/random/tech_supply, +/turf/simulated/floor, +/area/exodus/construction) +"cfL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"cfM" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cfN" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"cfO" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfP" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfQ" = ( +/obj/structure/sign/warning/biohazard, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cfR" = ( +/obj/machinery/newscaster{ + pixel_x = 31; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cfS" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/sleep/bedrooms) +"cfT" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"cfU" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "toxin_test_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_starboard) +"cfV" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfW" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfX" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cfY" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgeryprep) +"cfZ" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cga" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cgb" = ( +/obj/machinery/door/airlock/medical{ + autoclose = 0; + id_tag = "engineering_cubicle"; + name = "Restroom" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cgc" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/obj/item/wrench, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgd" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cge" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgf" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cgg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryobs) +"cgh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cgi" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cgj" = ( +/obj/machinery/vending/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cgk" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cgl" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for Surgery."; + id_tag = "Surgery"; + name = "Surgery"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cgm" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/break_room) +"cgn" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/evahallway) +"cgo" = ( +/obj/machinery/computer/modular/preset/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cgp" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark/start{ + name = "Counselor" + }, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"cgq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cgr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/patient_wing) +"cgs" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/substation/engineering) +"cgt" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "Virology Isolation Room One" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cgw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/table/standard, +/obj/item/storage/box/botanydisk{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/botanydisk, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgx" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cgy" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cgz" = ( +/obj/structure/disposalpipe/segment, +/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/supply, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cgA" = ( +/obj/structure/table/marble, +/obj/machinery/recharger, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"cgB" = ( +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cgC" = ( +/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/sign/warning/fire{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cgD" = ( +/obj/machinery/optable{ + name = "Xenobiology Operating Table" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cgE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/sublevel_access) +"cgF" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/lino, +/area/exodus/hydroponics/garden) +"cgG" = ( +/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 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cgH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/locker) +"cgI" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cgL" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/recharger, +/turf/simulated/floor/lino, +/area/exodus/security/vacantoffice) +"cgM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/sublevel_access) +"cgN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/starboardsolar) +"cgO" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cgP" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/starboardsolar) +"cgQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Isolation to Waste" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Science Substation" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/research) +"cgS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cgT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgU" = ( +/turf/simulated/floor, +/area/exodus/construction) +"cgV" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cgW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgX" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgY" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cgZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cha" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chd" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"che" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"chf" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"chg" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + name = "Shower" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chh" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"chi" = ( +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"chj" = ( +/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/exodus/engineering/engine_eva) +"chk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering EVA Storage" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_eva) +"chl" = ( +/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/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chn" = ( +/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/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cho" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chp" = ( +/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/atmospherics/pipe/manifold/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chq" = ( +/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/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_eva) +"chr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chs" = ( +/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/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cht" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/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/exodus/engineering/foyer) +"chv" = ( +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"chx" = ( +/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 = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chy" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Foyer"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"chA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chB" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"chC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Miscellaneous Research"; + sort_type = "Miscellaneous Research" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"chD" = ( +/obj/machinery/button/alternate/door/bolts{ + id_tag = "engineering_cubicle"; + name = "Door Bolt Control"; + pixel_x = -25; + pixel_y = 8 + }, +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chE" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/pink/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"chF" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/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/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"chG" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Aft Starboard" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"chH" = ( +/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/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"chI" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel_reinforced, +/obj/item/inflatable_dispenser{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/inflatable_dispenser, +/obj/item/inflatable_dispenser{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"chJ" = ( +/obj/structure/bed/psych, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/blue, +/area/exodus/medical/psych) +"chK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Virology Access" + }, +/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/tiled/techfloor/grid, +/area/exodus/medical/virology/access) +"chL" = ( +/obj/structure/table/standard, +/obj/item/gun/launcher/syringe, +/obj/item/storage/box/syringegun, +/obj/item/defibrillator, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"chM" = ( +/obj/structure/bedsheetbin, +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"chN" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "virology_airlock"; + name = "interior access button"; + pixel_x = -20; + pixel_y = -20 + }, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"chO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"chP" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/item/surgicaldrill, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"chQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"chR" = ( +/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/exodus/research/xenobiology) +"chS" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Storage" + }, +/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/techfloor/grid, +/area/exodus/research/xenobiology) +"chT" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"chV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"chW" = ( +/obj/structure/curtain/open/shower/engineering, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -5 + }, +/obj/machinery/door/window/westleft{ + name = "Shower" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"chX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"chY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"chZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cia" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/item/surgicaldrill, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cib" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Engineering Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"cic" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cid" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/biostorage) +"cie" = ( +/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/exodus/medical/virology) +"cif" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"cig" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/machinery/camera/network/research{ + c_tag = "Xenoflora Storage"; + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/item/clothing/under/rank/hydroponics, +/obj/item/clothing/under/rank/hydroponics, +/obj/item/clothing/gloves/thick/botany, +/obj/item/clothing/gloves/thick/botany, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cih" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -6 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cii" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -23; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/crew_quarters/sleep/engi_wash) +"cij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden, +/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, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cik" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/engineering/sublevel_access) +"cil" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cim" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Washroom" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/locker_room) +"cio" = ( +/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, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ciq" = ( +/turf/simulated/wall/prepainted, +/area/exodus/engineering/locker_room) +"cir" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cis" = ( +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cit" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ciu" = ( +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"civ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ciw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cix" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ciy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"ciz" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"ciA" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/engineering) +"ciB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ciC" = ( +/obj/machinery/door/window/eastright{ + name = "Engineering Reception Desk" + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ciE" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"ciF" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"ciG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery) +"ciH" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 8; + name = "Engineering EVA Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_eva) +"ciJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciK" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ciL" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_y = -30 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"ciM" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/tank/emergency/oxygen/engi, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/tank/emergency/oxygen/engi, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/tank/emergency/oxygen/engi, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciP" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/tank/emergency/oxygen/engi, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ciR" = ( +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciS" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciT" = ( +/obj/machinery/button/blast_door{ + id_tag = "surgeryobs"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciU" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery2) +"ciV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ciW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ciX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"ciY" = ( +/obj/structure/disposalpipe/segment, +/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/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ciZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cja" = ( +/obj/machinery/button/blast_door{ + id_tag = "surgeryobs2"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cjb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"cjc" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cjd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cje" = ( +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cjf" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cjg" = ( +/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/tiled/white, +/area/exodus/medical/virology/access) +"cjh" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Access Fore" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cji" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cjj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjk" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 10; + pixel_y = -22 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cjl" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cjm" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = -8; + pixel_y = 24 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cjn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjo" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Recovery Ward"; + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/ward) +"cjp" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/item/storage/box/masks, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/obj/item/defibrillator/loaded, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cjq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cjs" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cjt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cju" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cjv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjw" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cjx" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cjy" = ( +/obj/machinery/door/window/southright{ + dir = 4; + name = "Primate Pen" + }, +/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/exodus/medical/virology) +"cjz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/wardrobe/medic_white, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cjA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cjB" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cjC" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjD" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjF" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjH" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cjI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Elevator - Fore" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cjJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cjK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cjL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cjM" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Break/Access" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cjN" = ( +/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, +/turf/simulated/floor, +/area/exodus/maintenance/atmos_control) +"cjO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/research_port) +"cjP" = ( +/obj/machinery/suit_cycler/engineering, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering EVA"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cjQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_eva) +"cjR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"cjS" = ( +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cjT" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjU" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/item/folder/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjV" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjW" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cka" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/locker_room) +"ckb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"ckc" = ( +/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/steel_grid, +/area/exodus/engineering/locker_room) +"ckd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cke" = ( +/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/steel_grid, +/area/exodus/engineering/locker_room) +"ckf" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"ckg" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"ckh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + id_tag = "Engineering Subgrid"; + name = "Powernet Sensor - Engineering Subgrid"; + name_tag = "Engineering Subgrid" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"cki" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/padded, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ckj" = ( +/obj/machinery/vitals_monitor, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"ckk" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"ckl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"ckm" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/item/device/radio/phone/medbay{ + name = "surgery emergency phone" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ckn" = ( +/obj/structure/disposalpipe/segment, +/obj/item/roller, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cko" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"ckp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/pink{ + dir = 9 + }, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"ckq" = ( +/obj/machinery/vitals_monitor, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"ckr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cks" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ckt" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_port) +"ckv" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"ckw" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/airless, +/area/space) +"ckx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"cky" = ( +/obj/machinery/door/window/northright{ + name = "Xenoflora Containment" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"ckz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"ckA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"ckB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Virology Laboratory" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ckC" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckD" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckE" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_monitoring) +"ckF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckG" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"ckH" = ( +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckI" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckJ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ckK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/exodus/maintenance/atmos_control) +"ckN" = ( +/obj/machinery/requests_console{ + department = "Science"; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"ckO" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "solar_xeno_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/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/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"ckP" = ( +/obj/machinery/power/solar_control{ + dir = 1; + id_tag = "starboardsolar"; + name = "Aft Starboard Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"ckQ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"ckS" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/medbay) +"ckT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + 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/exodus/engineering/sublevel_access) +"ckX" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"ckZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cla" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"clb" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"clc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering EVA Storage Maintainance" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_eva) +"cld" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cle" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clf" = ( +/obj/structure/table/reinforced, +/obj/item/material/clipboard, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clg" = ( +/obj/machinery/navbeacon/Engineering, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cli" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"clj" = ( +/obj/structure/disposalpipe/segment, +/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/exodus/engineering/foyer) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cll" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Engineering" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"clm" = ( +/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/multi_tile/glass/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/locker_room) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/plant, +/obj/item/device/scanner/plant, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"clp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"clq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"clr" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cls" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"clt" = ( +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"clu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"clv" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"clw" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/substation/engineering) +"clx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cly" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/circular_saw{ + pixel_y = 8 + }, +/obj/item/scalpel, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"clz" = ( +/obj/machinery/optable, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"clA" = ( +/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 = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"clB" = ( +/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 = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"clC" = ( +/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/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"clD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 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 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"clE" = ( +/obj/structure/disposalpipe/segment, +/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/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"clF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"clG" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"clH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2" + }, +/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/techfloor/grid, +/area/exodus/medical/surgeryprep) +"clI" = ( +/obj/machinery/optable, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"clJ" = ( +/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 = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"clK" = ( +/obj/structure/table/standard, +/obj/item/circular_saw{ + pixel_y = 8 + }, +/obj/item/scalpel, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"clL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"clM" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"clN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology/access) +"clO" = ( +/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/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"clP" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"clQ" = ( +/obj/machinery/light/small, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"clS" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engi_shuttle) +"clT" = ( +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"clU" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/item/tank/air, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/mixing) +"clV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"clW" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engineering) +"clX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"clY" = ( +/obj/machinery/light, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = -22 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora_storage) +"clZ" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cma" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Drone Fabrication"; + sort_type = "Drone Fabrication" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cmb" = ( +/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/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cmc" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_room) +"cmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cme" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmf" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"cmg" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmh" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmi" = ( +/obj/machinery/biogenerator, +/obj/machinery/camera/network/research{ + c_tag = "Xenoflora"; + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmj" = ( +/turf/unsimulated/mask, +/area/exodus/engineering/sublevel_access) +"cmk" = ( +/obj/item/storage/lockbox/vials, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cml" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/freezer, +/area/exodus/research/xenobiology/xenoflora) +"cmm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/construction) +"cmn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cmo" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "EngineEmitterPortWest"; + name = "Engine Waste Handling Access" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cmp" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Starboard"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cmq" = ( +/obj/item/storage/fancy/vials, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmr" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "EngineEmitterPortWest"; + name = "Engine Waste Handling Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cms" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cmt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cmu" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/atmos/storage) +"cmv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cmw" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmx" = ( +/mob/living/bot/floorbot/premade, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmz" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/effect/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Engineering"; + name = "Engineering RC"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmD" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cmE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = -28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmG" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cmH" = ( +/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/exodus/engineering/foyer) +"cmI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmK" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"cmL" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmM" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/effect/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cmN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmO" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Locker Room"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/locker_room) +"cmQ" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "robotics_solar_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cmR" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/engineering) +"cmS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/substation/engineering) +"cmU" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/retractor, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cmV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"cmW" = ( +/obj/machinery/button/holosign{ + pixel_x = 24; + pixel_y = 2 + }, +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Operating Theatre 1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"cmY" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cmZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cna" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cnb" = ( +/obj/machinery/button/holosign{ + pixel_x = -24; + pixel_y = 2 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Operating Theatre 2"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cnc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"cne" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/retractor, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cng" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "robotics_solar_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cnh" = ( +/obj/machinery/power/supermatter, +/obj/machinery/mass_driver{ + id_tag = "enginecore" + }, +/obj/effect/engine_setup/core, +/turf/simulated/floor/greengrid/nitrogen, +/area/exodus/engineering/engine_room) +"cni" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora) +"cnj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnk" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cnl" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/arrivals) +"cno" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "solar_xeno_airlock"; + pixel_x = 25; + tag_airpump = "solar_xeno_pump"; + tag_chamber_sensor = "solar_xeno_sensor"; + tag_exterior_door = "solar_xeno_outer"; + tag_interior_door = "solar_xeno_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "solar_xeno_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "solar_xeno_pump" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/starboardsolar) +"cnp" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/construction) +"cnq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cnr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/construction) +"cns" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnt" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/research_starboard) +"cnu" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/storage) +"cnv" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cnx" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cny" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cnA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cnB" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cnC" = ( +/obj/machinery/door/firedoor, +/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/wallframe_spawn/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cnD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/construction) +"cnE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cnF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engineering_monitoring) +"cnH" = ( +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cnJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engineering_monitoring) +"cnK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/workshop) +"cnL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + name = "Engineering Locker Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/workshop) +"cnM" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/workshop) +"cnN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/workshop) +"cnP" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnQ" = ( +/obj/structure/table/standard, +/obj/item/hemostat, +/obj/machinery/light, +/obj/item/cautery, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnR" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/locker_room) +"cnS" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnT" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnU" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/medical, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cnV" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cnW" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cnX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cnY" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cnZ" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/medical, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"coa" = ( +/obj/structure/table/standard, +/obj/item/hemostat, +/obj/machinery/light, +/obj/item/cautery, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cob" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_xeno_inner"; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/starboardsolar) +"coc" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cod" = ( +/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, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"coe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Starboard"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cof" = ( +/obj/machinery/light{ + dir = 1 + }, +/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/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cog" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"coi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"coj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cok" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + 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 = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"col" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"com" = ( +/turf/simulated/wall/prepainted, +/area/exodus/research/xenobiology) +"con" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"coo" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "xeno_airlock_control"; + name = "Xenobiology Access Button"; + pixel_x = 8; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cop" = ( +/obj/machinery/camera/xray/research{ + c_tag = "Xenobiology Access" + }, +/obj/structure/closet/secure_closet/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"coq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 7; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/xenobio, +/obj/machinery/vending/wallmed1{ + pixel_x = -7; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cor" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "eng_al_c_snsr"; + pixel_x = -25 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cos" = ( +/obj/machinery/disposal, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/xenobiology) +"cot" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cou" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cov" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/space_heater, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cow" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cox" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"coy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/substation/engineering) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"coA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"coB" = ( +/obj/machinery/door/airlock/maintenance, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"coC" = ( +/obj/structure/ladder, +/obj/effect/catwalk_plated/dark, +/turf/simulated/open, +/area/exodus/maintenance/engi_engine) +"coD" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coE" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coF" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"coG" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coH" = ( +/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/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"coJ" = ( +/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_grid, +/area/exodus/engineering) +"coK" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"coL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 30; + pixel_z = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = 30; + pixel_z = -4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"coM" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coN" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coO" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coP" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"coS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1 Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery) +"coT" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "waste pump" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Engine Waste" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"coU" = ( +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/item/reagent_containers/ivbag/blood, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Surgery Prep"; + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"coV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2 Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery2) +"coW" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/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/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology/access) +"coX" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/virology/access) +"coY" = ( +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"coZ" = ( +/mob/living/simple_animal/slime, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cpa" = ( +/obj/machinery/door/window/eastleft{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpb" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"cpc" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery) +"cpd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/westright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cpe" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cpf" = ( +/obj/effect/landmark/map_data/exodus, +/turf/space, +/area/space) +"cpg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cph" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/exodus/medical/surgery2) +"cpi" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cpj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/storage) +"cpm" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "solar_xeno_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cpn" = ( +/obj/machinery/power/rad_collector, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cpo" = ( +/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/plating, +/area/exodus/engineering/sublevel_access) +"cpp" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Elevator - Aft"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cpq" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cpr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/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/plating, +/area/exodus/engineering/sublevel_access) +"cps" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/sublevel_access) +"cpt" = ( +/obj/machinery/door/window/southright{ + name = "Virology Isolation Room Three" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cpu" = ( +/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/exodus/engineering/sublevel_access) +"cpw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"cpx" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cpy" = ( +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/sleeper) +"cpz" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics Monitoring Room"; + dir = 8 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cpA" = ( +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology Southeast"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/space, +/area/space) +"cpD" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cpE" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cpF" = ( +/obj/machinery/computer/shuttle_control/explore/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cpH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cpI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpK" = ( +/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/exodus/research/xenobiology) +"cpL" = ( +/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/exodus/research/xenobiology) +"cpN" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/sleeper) +"cpO" = ( +/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{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpP" = ( +/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/white, +/area/exodus/research/xenobiology) +"cpS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cpV" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/research/xenobiology) +"cpW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/atmos{ + name = "Atmospherics Monitoring Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engineering_monitoring) +"cpX" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_north = 4; + tag_west = 2; + use_power = 0 + }, +/obj/effect/engine_setup/filter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cpY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Monitoring Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engineering_monitoring) +"cpZ" = ( +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/airless, +/area/space) +"cqa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cqb" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"cqd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cqe" = ( +/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/exodus/engineering) +"cqf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cqg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cqh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cqi" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"cqj" = ( +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cqk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/crate/medical, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cql" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cqm" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/AMinus, +/obj/item/reagent_containers/ivbag/blood/APlus, +/obj/item/reagent_containers/ivbag/blood/BMinus, +/obj/item/reagent_containers/ivbag/blood/BPlus, +/obj/item/reagent_containers/ivbag/blood/OPlus, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"cqn" = ( +/obj/structure/iv_drip, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cqo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cqp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/crate/medical, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cqq" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"cqr" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "virology_outer"; + name = "Engineering External Access" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/medbay) +"cqs" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "solar_xeno_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/starboardsolar) +"cqu" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cqv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cqw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "engineering_dock_airlock"; + name = "interior access button"; + pixel_x = -30; + pixel_y = -25 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cqx" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cqz" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology/access) +"cqA" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "virology_airlock"; + name = "exterior access button"; + pixel_x = 20; + pixel_y = 20 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cqB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cqC" = ( +/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/white, +/area/exodus/research/xenobiology) +"cqD" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/space, +/area/space) +"cqE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cqF" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/space, +/area/space) +"cqG" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "engineering_dock_inner"; + name = "Engineering Dock Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"cqH" = ( +/obj/structure/sign/warning/hot_exhaust{ + pixel_x = -32 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/space, +/area/space) +"cqJ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cqL" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cqN" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_y = -3 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id_tag = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -6; + pixel_y = 7 + }, +/obj/machinery/button/toggle{ + desc = "A remote control-switch for the engine emitter."; + id_tag = "EngineEmitter"; + name = "Engine Emitter"; + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cqO" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cqP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cqR" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"crb" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/qm) +"crc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/airless, +/area/space) +"crd" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "engineering_dock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "engineering_dock_airlock"; + pixel_x = -25; + tag_airpump = "engineering_dock_pump"; + tag_chamber_sensor = "engineering_dock_sensor"; + tag_exterior_door = "engineering_dock_outer"; + tag_interior_door = "engineering_dock_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cre" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"crf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"crg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/space) +"crh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology/xenoflora_storage) +"cri" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"crj" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"crk" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/space, +/area/space) +"crl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"crm" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"crn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"cro" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"crp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"crq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "engineering_dock_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "engineering_dock_sensor"; + pixel_x = -25; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"crr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"crs" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "disvent"; + name = "Incinerator Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"crt" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1 Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"cru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"crv" = ( +/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, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engineering) +"crw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"crx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"cry" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2 Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"crz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"crA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"crB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"crC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/exodus/maintenance/incinerator) +"crD" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"crE" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/airless, +/area/space) +"crF" = ( +/obj/machinery/door/blast/regular{ + desc = "By gods, release the hounds!"; + dir = 4; + id_tag = "xenobioout6"; + name = "Containment Release" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"crG" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/medbay) +"crH" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "engineering_dock_outer"; + name = "Engineering Dock Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"crI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"crJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"crK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"crL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"crM" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"crN" = ( +/obj/machinery/door/blast/regular{ + id_tag = "EngineVent"; + name = "Reactor Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced, +/area/exodus/engineering/engine_room) +"crO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"crP" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"crQ" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"crR" = ( +/obj/structure/table/standard, +/obj/item/storage/box/matches, +/obj/item/storage/fancy/cigarettes, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/deck/cards, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"crU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"csb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/circuitboard/arcade/battle, +/obj/item/stock_parts/circuitboard/arcade/orion_trail, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"csg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/surgeryprep) +"csj" = ( +/obj/machinery/smartfridge/secure/extract, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csk" = ( +/obj/machinery/computer/operating{ + name = "Xenobiology Operating Computer" + }, +/obj/effect/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/space, +/area/space) +"csm" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csn" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/device/flashlight, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"cso" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/three_quarters, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/space, +/area/space) +"csr" = ( +/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 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"css" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cst" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"csu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csv" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csw" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"csz" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"csA" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Radiator" + }, +/turf/space, +/area/space) +"csB" = ( +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 22 + }, +/obj/machinery/computer/robotics, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"csC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"csD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"csE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery) +"csF" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery) +"csG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white/monotile, +/area/exodus/medical/surgery2) +"csH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"csI" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"csJ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"csK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/exodus/medical/surgery2) +"csL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"csM" = ( +/obj/structure/lattice, +/obj/structure/grille/broken{ + dir = 8 + }, +/turf/space, +/area/space) +"csN" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/xray/medbay{ + c_tag = "Virology Access Aft" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csO" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csP" = ( +/obj/item/roller, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"csQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/space, +/area/space) +"csR" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/space, +/area/space) +"csS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"csT" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/airless, +/area/space) +"csX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ctb" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stock_parts/circuitboard/message_monitor{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/exodus/storage/tech) +"cte" = ( +/obj/effect/floor_decal/corner/lime/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"ctg" = ( +/obj/item/stack/material/rods{ + amount = 6 + }, +/turf/space, +/area/space) +"ctn" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cto" = ( +/obj/structure/lattice, +/obj/structure/grille/broken{ + dir = 1 + }, +/turf/space, +/area/space) +"ctp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/space, +/area/space) +"ctq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cts" = ( +/obj/item/stack/material/rods{ + amount = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ctt" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"ctu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Hallway North"; + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"ctv" = ( +/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, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"ctw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"ctx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cty" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctz" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"ctA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"ctB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctC" = ( +/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/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"ctD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Operating Theatre 1 Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery) +"ctE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Operating Theatre 2 Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgery2) +"ctF" = ( +/turf/simulated/wall/prepainted, +/area/exodus/medical/virology) +"ctH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/medical/virology) +"ctK" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"ctO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/space, +/area/space) +"ctQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Monkey Pen" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctR" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"ctS" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/westright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"ctT" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctV" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctW" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/tape_roll, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctX" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/glass_jar, +/obj/item/glass_jar, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"ctZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cua" = ( +/obj/machinery/power/solar{ + id_tag = "starboardsolar"; + name = "Starboard Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cub" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/space, +/area/space) +"cud" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/space, +/area/space) +"cuf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Pre-Op Prep Room Maintenance Access" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/surgeryprep) +"cul" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cum" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"cun" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuo" = ( +/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/exodus/engineering) +"cuq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cur" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/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/exodus/engineering) +"cus" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/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 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cut" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/techfloor/grid, +/area/exodus/engineering/workshop) +"cuu" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Engineering"; + sort_type = "Engineering" + }, +/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/exodus/engineering) +"cuv" = ( +/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/exodus/engineering/workshop) +"cuw" = ( +/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/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/steel_grid, +/area/exodus/engineering/workshop) +"cux" = ( +/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{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cuy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cuz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"cuB" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cuC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cuD" = ( +/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/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cuE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cuF" = ( +/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/exodus/maintenance/medbay) +"cuG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuJ" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cuL" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuM" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuO" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/folder/white, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuP" = ( +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cuS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"cuT" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"cuU" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Weapons locker" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/suit/armor/vest/nt, +/obj/item/clothing/suit/armor/vest/nt, +/obj/item/clothing/suit/armor/vest/nt, +/obj/item/clothing/suit/armor/vest/nt, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/armoury) +"cuV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"cuW" = ( +/obj/structure/extinguisher_cabinet, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/medical/virology) +"cuX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"cuY" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/security/warden) +"cuZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Warden's Office" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"cva" = ( +/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, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"cvb" = ( +/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/white, +/area/exodus/research/xenobiology) +"cvc" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cvd" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/clothing/head/bio_hood/scientist, +/obj/item/clothing/suit/bio_suit/scientist, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cve" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cvf" = ( +/obj/structure/table/rack, +/obj/item/crowbar, +/obj/item/device/radio/off, +/obj/item/wrench, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/warden) +"cvg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cvh" = ( +/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/exodus/security/warden) +"cvi" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvj" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvk" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"cvl" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvo" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cvq" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cvt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cvy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvD" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/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/exodus/engineering) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cvF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology Port"; + dir = 4 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cvN" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/incinerator) +"cvO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cvP" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cvZ" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cwa" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwb" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/xenobio, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwe" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwf" = ( +/obj/machinery/power/solar{ + id_tag = "starboardsolar"; + name = "Starboard Solar Array" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cwm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cwn" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cwo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cwp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cwt" = ( +/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/airlock/command{ + name = "Research Director" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/crew_quarters/heads/hor) +"cwu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cwv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cww" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cwx" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cwy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cwz" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cwO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Hard Storage" + }, +/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/techfloor/grid, +/area/exodus/engineering/storage) +"cwQ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cwR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cwU" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"cwW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Hard Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/storage) +"cwX" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering\\Medbay Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engineering) +"cwZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cxb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/exodus/maintenance/arrivals) +"cxe" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + name = "Research Director RC"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cxt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxu" = ( +/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/steel_grid, +/area/exodus/engineering) +"cxv" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cxx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cxy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cxz" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxA" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxC" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - RD's Office"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cxD" = ( +/obj/structure/dispenser{ + oxygentanks = 0 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cxF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Incinerator Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/incinerator) +"cxG" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxH" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cxI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cxK" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/cargo) +"cxM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Virology Laboratory" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxQ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cxV" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/westright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cxW" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cyh" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cyi" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/heads/hor) +"cyq" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"cyv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cyx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cyy" = ( +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyz" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyA" = ( +/obj/machinery/fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyD" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cyE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/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/techfloor/grid, +/area/exodus/research/storage) +"cyF" = ( +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cyG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals Southeast"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cyI" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cyJ" = ( +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cyK" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/item/device/radio/phone/medbay{ + name = "virology emergency phone"; + pixel_x = -6; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cyL" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"cyN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cyP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cyU" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cyV" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/engineering/atmos/storage) +"cyY" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cyZ" = ( +/obj/item/device/paint_sprayer, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/item/device/t_scanner, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"cza" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"czb" = ( +/obj/machinery/light, +/obj/item/wrench, +/obj/item/device/flashlight, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"czc" = ( +/obj/machinery/requests_console{ + department = "Engineering"; + name = "Engineering RC"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/workshop) +"czd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cze" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_airlock"; + pixel_y = 25; + tag_airpump = "rescue_shuttle_dock_pump"; + tag_chamber_sensor = "rescue_shuttle_dock_sensor"; + tag_exterior_door = "rescue_shuttle_dock_outer"; + tag_interior_door = "rescue_shuttle_dock_inner" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"czf" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "virology_inner"; + name = "Engineering External Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/medbay) +"czg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"czi" = ( +/obj/machinery/atmospherics/tvalve/digital/bypass{ + dir = 1; + icon_state = "map_tvalve0"; + state = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"czj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "rescue_shuttle_dock_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"czk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "rescue_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"czn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czp" = ( +/obj/machinery/light, +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"czr" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czs" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"czy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "rescue_shuttle_dock_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"czA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering) +"czD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czI" = ( +/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" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"czN" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"czP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAe" = ( +/obj/machinery/door/firedoor, +/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, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cAi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_sensor"; + pixel_x = -25 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/hallway/secondary/entry/aft) +"cAj" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "incinerator_access_control"; + name = "Incinerator Access Console"; + pixel_x = -6; + pixel_y = -26; + tag_exterior_door = "incinerator_airlock_exterior"; + tag_interior_door = "incinerator_airlock_interior" + }, +/obj/machinery/button/ignition{ + id_tag = "Incinerator"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/maintenance/incinerator) +"cAk" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "rescue_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/secondary/entry/aft) +"cAp" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cAt" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cAz" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + dir = 1; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAB" = ( +/obj/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAD" = ( +/obj/machinery/light, +/obj/structure/closet, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/xenobiology) +"cAN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cAP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cAV" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/incinerator) +"cBl" = ( +/obj/machinery/firealarm{ + pixel_y = 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 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cBm" = ( +/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/exodus/engineering) +"cBn" = ( +/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/steel_grid, +/area/exodus/engineering) +"cBo" = ( +/obj/machinery/light{ + dir = 1 + }, +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cBp" = ( +/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/steel_grid, +/area/exodus/engineering) +"cBq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"cBs" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cBt" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cups, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cBu" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/hallway/secondary/entry/port) +"cBz" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cBB" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cBD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"cBH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"cBI" = ( +/obj/machinery/oxygen_pump, +/turf/simulated/wall/prepainted, +/area/exodus/medical/medbay) +"cBN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/drone_fabrication) +"cBW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cBZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCa" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/incinerator) +"cCb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/incinerator) +"cCf" = ( +/obj/structure/closet/crate/solar_assembly, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"cCq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cCx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"cCz" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/clothing/suit/fire, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cCA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCC" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cCJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/space) +"cCO" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/maintenance/locker) +"cCP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/fore) +"cCR" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCS" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCT" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cCV" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCW" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCX" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cCY" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/pods) +"cDd" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio5"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cDf" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cDg" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cDh" = ( +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDi" = ( +/obj/machinery/computer/cryopod/robot{ + pixel_y = 30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDj" = ( +/obj/structure/disposalpipe/segment, +/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/plating, +/area/exodus/engineering/drone_fabrication) +"cDk" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_smes) +"cDl" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_smes) +"cDm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/latejoin/cyborg, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_airlock) +"cDt" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDu" = ( +/obj/machinery/recharge_station, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engine Monitoring Room" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_monitoring) +"cDx" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "Engine Access" + }, +/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/techfloor/grid, +/area/exodus/engineering/engine_airlock) +"cDy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDA" = ( +/obj/machinery/computer/drone_control{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDB" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cDC" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cDE" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "toxin_test_airlock"; + name = "interior access button"; + pixel_x = 20; + pixel_y = 20 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/exodus/maintenance/research_starboard) +"cDF" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/incinerator) +"cDJ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_monitoring) +"cDL" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDN" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cDR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cDS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cDU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDW" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cDY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cEd" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEe" = ( +/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, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEk" = ( +/obj/machinery/drone_fabricator, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEn" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEo" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/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, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cEt" = ( +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"cEu" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "air_in"; + use_power = 1 + }, +/obj/machinery/sparker{ + id_tag = "Incinerator"; + pixel_x = -20 + }, +/turf/simulated/floor/reinforced, +/area/exodus/maintenance/incinerator) +"cEw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cEx" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEy" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEz" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEA" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cEE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEF" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cEI" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Drone Fabrication" + }, +/obj/structure/disposalpipe/segment, +/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/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/drone_fabrication) +"cEL" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEM" = ( +/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/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cEU" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cEW" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEX" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cEZ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/under/color/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/item/clothing/shoes/white, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cFA" = ( +/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/plating, +/area/exodus/engineering/drone_fabrication) +"cFC" = ( +/obj/machinery/computer/shuttle_control/engineering{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering Shuttle Access"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_shuttle) +"cFH" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFI" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cFL" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/starboard) +"cFM" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/diagonal{ + dir = 4 + }, +/obj/item/folder/white, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cFR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cFT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "engine_airlock_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cFU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cFY" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/office) +"cFZ" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"cGc" = ( +/obj/effect/landmark/latejoin/cyborg, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cGd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/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/plating, +/area/exodus/engineering/drone_fabrication) +"cGf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engineering SMES"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cGk" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Monitoring Room"; + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGn" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGo" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"cGr" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cGs" = ( +/obj/machinery/door/window/southright{ + autoset_access = 0; + name = "Containment Pen"; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id_tag = "xenobio6"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/exodus/research/xenobiology) +"cGt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_room) +"cGA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "engineering_dock_inner"; + name = "Engineering Dock Airlock" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_shuttle) +"cGC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cGI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cGK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/virology) +"cGM" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + heat_proof = 1; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/incinerator) +"cGQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space) +"cGR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"cGS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cGU" = ( +/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/exodus/engineering/engine_room) +"cGV" = ( +/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/exodus/engineering/engine_room) +"cGW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cGX" = ( +/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/exodus/engineering/engine_room) +"cGZ" = ( +/obj/machinery/computer/drone_control{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHa" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/machinery/robotic_fabricator, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHb" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"cHf" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + id_tag = "Master"; + name = "Powernet Sensor - Master Grid"; + name_tag = "Master" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/drone_fabrication) +"cHl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cHm" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "engine_electrical_maintenance"; + name = "Door Bolt Control"; + pixel_x = 5; + pixel_y = -25 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_smes) +"cHq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"cHt" = ( +/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/exodus/engineering/engine_room) +"cHu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"cHA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_airlock) +"cHB" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/ion_engine{ + dir = 4; + icon_state = "nozzle" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"cHD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cHF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHK" = ( +/obj/item/stack/material/rods{ + amount = 10 + }, +/turf/space, +/area/space) +"cHL" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 1" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"cHR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_waste) +"cHT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-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 = 6 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Waste Handling" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cHU" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/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 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cHY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cHZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIa" = ( +/obj/machinery/power/emitter{ + anchored = 1; + id_tag = "EngineEmitter"; + state = 2 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIb" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + id_tag = "Engine Output"; + 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/exodus/engineering/engine_room) +"cIc" = ( +/obj/item/stack/cable_coil, +/turf/space, +/area/space) +"cId" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/alarm/nobreach{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIe" = ( +/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/exodus/engineering/engine_room) +"cIl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"cIn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space) +"cIo" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"cIp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/engineering/engine_waste) +"cIq" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIr" = ( +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIs" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engine Waste Handling" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/engi_engine) +"cIu" = ( +/obj/machinery/power/solar{ + id_tag = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIv" = ( +/obj/machinery/power/solar{ + id_tag = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cID" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIF" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIH" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIJ" = ( +/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/exodus/engineering/engine_room) +"cIK" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/portsolar) +"cIL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/engi_engine) +"cIN" = ( +/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/exodus/engineering/engine_room) +"cIO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"cIQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cIU" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cIV" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIX" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Engine Waste" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cIZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJa" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/maintenance/portsolar) +"cJb" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJe" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJf" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJi" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJk" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/aft) +"cJl" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJn" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Aft Port" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cJo" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJv" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cJF" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/portsolar) +"cJH" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJL" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_x = 5; + pixel_y = -25 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id_tag = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -5; + pixel_y = -25 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJT" = ( +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cJU" = ( +/obj/machinery/camera/network/engine{ + c_tag = "Engine Core West"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cJV" = ( +/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/exodus/engineering/engine_room) +"cJW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJX" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cJZ" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKa" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/camera/network/engine{ + c_tag = "Engine Core East"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKg" = ( +/turf/simulated/wall/prepainted, +/area/exodus/maintenance/engi_engine) +"cKk" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKr" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cKu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKv" = ( +/obj/machinery/air_sensor{ + id_tag = "engine_sensor" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/exodus/engineering/engine_room) +"cKw" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + icon_state = "map_injector"; + id_tag = "cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cKx" = ( +/obj/structure/sign/warning/vent_port{ + pixel_y = 32 + }, +/turf/space, +/area/space) +"cKB" = ( +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 1; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cKC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cKH" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "engineering_dock_airlock"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = -8 + }, +/turf/space, +/area/space) +"cKI" = ( +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engineering) +"cKM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cKN" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cKO" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "engineering_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_engineering) +"cKU" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKV" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "virology_sensor"; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + frequency = 1380; + id_tag = "virology_airlock"; + pixel_x = 25; + tag_airpump = "virology_pump"; + tag_chamber_sensor = "virology_sensor"; + tag_exterior_door = "virology_outer"; + tag_interior_door = "virology_inner" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "virology_pump" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKX" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"cKY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "virology_pump" + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cKZ" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/medbay) +"cLc" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "engineering_shuttle"; + pixel_y = 25; + tag_door = "engineering_shuttle_hatch" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Drone Fabrication/Engine Waste Handling" + }, +/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/techfloor/grid, +/area/exodus/engineering/drone_fabrication) +"cLf" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_electrical_maintenance"; + locked = 1; + name = "Electrical Maintenance" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLg" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + id_tag = "engine_airlock_interior"; + name = "Engine Airlock Interior" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cLi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cLj" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/obj/effect/overmap/visitable/ship/landable/pod/engineering, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLp" = ( +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + id_tag = "Engine Power"; + name = "Powernet Sensor - Engine Power"; + name_tag = "Engine Power" + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLs" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id_tag = "portsolar"; + name = "Aft Port Solar Control" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cLt" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"cLu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cLv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Port Access"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cLw" = ( +/turf/simulated/floor/greengrid/nitrogen, +/area/exodus/engineering/engine_room) +"cLx" = ( +/obj/machinery/camera/network/engine{ + c_tag = "Engine Core South"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/exodus/engineering/engine_room) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLA" = ( +/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/exodus/engineering/engine_room) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLE" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_access_hatch"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_room) +"cLF" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_access_hatch"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/engine_room) +"cLI" = ( +/obj/machinery/button/blast_door{ + id_tag = "EngineVent"; + name = "Reactor Ventillatory Control"; + pixel_x = -25 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"cLJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cLK" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "robotics_solar_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/portsolar) +"cLL" = ( +/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/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cLP" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/exodus/solar/port) +"cLQ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Maintenance Aft Port"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cLS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cLU" = ( +/turf/space, +/area/space) +"cLZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cMa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter{ + id_tag = "wloop_atm_meter" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cMb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_waste) +"cMe" = ( +/obj/structure/disposalpipe/segment, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics) +"cMf" = ( +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/exodus/medical/genetics/cloning) +"cMg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/portsolar) +"cMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exodus/maintenance/engi_engine) +"cQw" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"cQX" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"cSp" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"cUO" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"cYR" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"diZ" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"djd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"dkO" = ( +/obj/effect/overmap/visitable/ship/landable/pod/mining, +/obj/machinery/computer/ship/helm, +/obj/machinery/computer/shuttle_control/explore/mining{ + pixel_x = 32 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"drB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"drR" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/storage/emergency) +"dsT" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"dvY" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"dxK" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"dzA" = ( +/obj/machinery/mineral/processing_unit{ + input_turf = 2; + output_turf = 1 + }, +/turf/simulated/floor/reinforced, +/area/exodus/quartermaster/miningdock) +"dEE" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"dHF" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"dJe" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"dKq" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"dMi" = ( +/obj/machinery/mineral/unloading_machine{ + input_turf = 2; + output_turf = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"dMn" = ( +/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_grid, +/area/exodus/hallway/secondary/exit) +"dMz" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/chapel/main) +"dNC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"dNS" = ( +/obj/effect/shuttle_landmark/exodus_main_port, +/turf/space, +/area/space) +"dQa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"dRD" = ( +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"dYF" = ( +/obj/effect/shuttle_landmark/merc/arivals, +/turf/space, +/area/space) +"eaE" = ( +/obj/structure/closet/crate, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/material/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/material/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/material/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/item/material/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/material/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/effect/floor_decal/industrial/fire{ + dir = 1; + icon_state = "stripe" + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/security/nuke_storage) +"ejv" = ( +/obj/effect/shuttle_landmark/research_pod_dock, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"esY" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/arrival/station) +"etN" = ( +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"eut" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"ewE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"eEV" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"eKH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"eNu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"eOv" = ( +/obj/structure/catwalk, +/obj/machinery/power/port_gen/pacman, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/shuttle_landmark/mining_pod_dock, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"ePM" = ( +/obj/structure/sign/warning/airlock, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/quartermaster/miningdock) +"eTV" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"eWD" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"eZK" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"ffg" = ( +/obj/effect/shuttle_landmark/engineering_pod_dock, +/obj/structure/cable/green, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"fkV" = ( +/obj/structure/sign/warning/docking_area{ + pixel_y = 7 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/quartermaster/miningdock) +"fnT" = ( +/obj/machinery/door/airlock/multi_tile/glass/command{ + name = "E.V.A" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"fpV" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"fuZ" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"fyf" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"fCE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"fKm" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/effect/paint/brown, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "minprot"; + name = "protective shutters" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"fKS" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"fNm" = ( +/obj/structure/catwalk, +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"fPv" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"fTj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "mining_dock_airlock"; + name = "interior access button"; + pixel_x = -20; + pixel_y = -20 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"gcu" = ( +/turf/simulated/floor/blackgrid{ + light_inner_range = 2; + light_max_bright = 3; + light_outer_range = 4 + }, +/area/exodus/security/nuke_storage) +"gdx" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargo_mining_conveyor"; + id_tag = "cargo_mining_conveyor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"glx" = ( +/obj/effect/landmark/test/safe_turf, +/turf/simulated/floor/reinforced, +/area/holodeck/alphadeck) +"gny" = ( +/obj/machinery/mining/drill, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"gpG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"gsd" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/hallway/primary/central_two) +"gwY" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"gyJ" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"gAA" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"gHt" = ( +/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/white, +/area/exodus/medical/patient_wing) +"gOE" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/camera/network/exodus{ + c_tag = "Arrivals - Main Shuttle"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"gSL" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"gYF" = ( +/obj/machinery/mining/brace{ + dir = 8 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"hgq" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/vending/wallmed1{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"hgF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"hkD" = ( +/obj/machinery/light_switch{ + pixel_x = 4; + pixel_y = -24 + }, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"hoh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"hsk" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"htC" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/aft) +"hDl" = ( +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"hDm" = ( +/obj/machinery/door/window{ + dir = 4; + name = "High-Risk Modules" + }, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"hLX" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"hOb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"hPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"hWY" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Main"; + charge = 1e+007; + input_attempt = 1; + input_level = 1e+006; + output_attempt = 1; + output_level = 1e+006 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_mining) +"hZw" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"hZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"ibm" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"ifW" = ( +/obj/effect/shuttle_landmark/admin/out, +/turf/space, +/area/space) +"igB" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"ihN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"iok" = ( +/obj/machinery/vending/robotics{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"itc" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"itS" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/arrival/station) +"ixD" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"iFB" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"iKS" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/exodus/quartermaster/miningdock) +"iNs" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"iUa" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/table/marble, +/obj/machinery/reagent_temperature/cooler, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"iXX" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/sublevel_access) +"iYA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"jcK" = ( +/obj/structure/catwalk, +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"jfD" = ( +/obj/machinery/mineral/unloading_machine{ + input_turf = 2; + output_turf = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"jko" = ( +/obj/machinery/power/rad_collector, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"jpR" = ( +/obj/structure/table/woodentable/walnut, +/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/device/synthesized_instrument/synthesizer{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/sleep) +"jqj" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "mining_shuttle_pump" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"jsn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"jva" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"jFq" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/hallway/primary/aft) +"jHW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/hallway/primary/central_one) +"jKq" = ( +/turf/simulated/wall/prepainted, +/area/exodus/crew_quarters/bar/cabin) +"jTK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"jYD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"khd" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/simulated/floor/bluegrid, +/area/exodus/research/server) +"klA" = ( +/turf/simulated/floor/plating, +/area/space) +"klX" = ( +/obj/machinery/light, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "research_shuttle"; + pixel_y = -25; + tag_door = "research_shuttle_hatch" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"kvT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/hostile/retaliate/parrot/Poly, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/crew_quarters/heads/chief) +"kwY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"kxa" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"kyr" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/paint/brown, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "minprot"; + name = "protective shutters" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"kSt" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"kVV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"kZQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "mining_dock_pump" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cargo Mining Dock Airlock"; + dir = 8 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "mining_dock_sensor"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/structure/closet/crate, +/obj/item/ore/iron, +/obj/item/ore/silver, +/obj/item/ore/silver, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"lbI" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/chemistry) +"lfJ" = ( +/obj/machinery/tele_beacon, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"lir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"lyt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"lAZ" = ( +/obj/machinery/camera/network/exodus{ + c_tag = "Departures West"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"lDi" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad/longrange, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"lDJ" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"lEx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "mining_dock_pump" + }, +/obj/machinery/light/small{ + dir = 1; + pixel_x = -7 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "mining_dock_airlock"; + pixel_x = 8; + pixel_y = 24; + tag_airpump = "mining_dock_pump"; + tag_chamber_sensor = "mining_dock_sensor"; + tag_exterior_door = "mining_dock_outer"; + tag_interior_door = "mining_dock_inner" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"lFM" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/exodus_pod_engineering) +"miB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"mlI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/britcup{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"mue" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/medical/sleeper) +"mwu" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"mGD" = ( +/obj/machinery/robotics_fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/robotics) +"mGM" = ( +/obj/effect/floor_decal/sign/or2, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery2) +"mKS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + dir = 8; + name = "Engineering Locker Room" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering/workshop) +"mLL" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"mNK" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/firedoor, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_engineering) +"mUd" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "east bump"; + pixel_x = -24; + pixel_y = 5 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/button/blast_door{ + id_tag = "minprot"; + name = "ship protective shutters"; + pixel_x = -28; + pixel_y = -8 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"mVl" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/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/plating, +/area/ship/exodus_pod_research) +"mYp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"ngU" = ( +/obj/effect/shuttle_landmark/exodus_main_aft, +/turf/space, +/area/space) +"nky" = ( +/obj/effect/shuttle_landmark/exodus_main_starboard, +/turf/space, +/area/space) +"noT" = ( +/obj/effect/landmark/test/space_turf, +/turf/space, +/area/space) +"noV" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"nvs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"nCx" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_mining) +"nIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/storage) +"nOM" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/freezer, +/area/shuttle/arrival/station) +"nPR" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"nWk" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"nYi" = ( +/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/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"oaC" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/roller, +/obj/item/clothing/gloves/latex/nitrile, +/turf/simulated/floor/tiled/dark, +/area/exodus/research/robotics) +"odK" = ( +/obj/machinery/mech_recharger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/chargebay) +"ohn" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"ouk" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"oxE" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"oAO" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engine_monitoring) +"oDi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"oLV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"oRC" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"oWh" = ( +/obj/machinery/requests_console{ + department = "Arrival shuttle"; + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/cryopod{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"pbo" = ( +/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/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"pkr" = ( +/obj/machinery/ion_engine{ + dir = 1; + icon_state = "nozzle" + }, +/obj/structure/cable/cyan, +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_mining) +"poU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/exodus/chapel/main) +"pqS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"pyU" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"pAd" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/ion_engine{ + dir = 4; + icon_state = "nozzle" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"pFS" = ( +/obj/machinery/r_n_d/server/core, +/turf/simulated/floor/bluegrid, +/area/exodus/research/server) +"pGo" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargo_mining_conveyor"; + id_tag = "cargo_mining_conveyor" + }, +/turf/simulated/floor/reinforced, +/area/exodus/quartermaster/miningdock) +"pLr" = ( +/obj/structure/synthesized_instrument/synthesizer/piano, +/turf/simulated/floor/wood/walnut, +/area/exodus/crew_quarters/bar) +"pWa" = ( +/obj/effect/shuttle_landmark/exodus_main_fore, +/turf/space, +/area/space) +"qlX" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/exodus/library) +"qmC" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"qqx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"qHi" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay"; + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"qHU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"qJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"qJE" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "mining_shuttle_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "mining_shuttle"; + pixel_x = -22; + tag_airpump = "mining_shuttle_pump"; + tag_chamber_sensor = "mining_shuttle_sensor"; + tag_exterior_door = "mining_shuttle_hatch_outer"; + tag_interior_door = "mining_shuttle_hatch_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "mining_shuttle_sensor"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"qJW" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/engineering_monitoring) +"rhM" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/starboard) +"rkN" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"roQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/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/plating, +/area/exodus/maintenance/research_starboard) +"rwB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/exodus/turret_protected/ai_upload) +"rCg" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1 + }, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/dark, +/area/exodus/crew_quarters/heads/hos) +"rMt" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/prepainted, +/area/exodus/quartermaster/miningdock) +"rNu" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"rQB" = ( +/obj/effect/paint_stripe/yellow, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_engineering) +"rTB" = ( +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"rUP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/entry/port) +"rYD" = ( +/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/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"scJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"sfM" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"sfO" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"sgI" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/machinery/door/window/eastright, +/turf/simulated/floor/tiled/old_tile, +/area/exodus/quartermaster/miningdock) +"sgQ" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "minprot"; + name = "protective shutters" + }, +/obj/effect/paint/brown, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"ssg" = ( +/turf/simulated/floor/tiled/techfloor, +/area/exodus/engineering/storage) +"sxY" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"sBp" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/exodus/engineering/storage) +"sCJ" = ( +/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/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"sDc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"sFU" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/kitchen) +"sGZ" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"sNl" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"sOl" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "mining_dock_airlock"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = 25 + }, +/turf/space, +/area/space) +"sVy" = ( +/obj/effect/floor_decal/corner/blue{ + 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/white, +/area/exodus/research/docking) +"sWj" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"sYh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/engineering) +"tos" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"tpe" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tuN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/black, +/obj/effect/floor_decal/corner/white/three_quarters, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"tzU" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tAY" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"tCN" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"tDD" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tDI" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/camera/network/research{ + c_tag = "Research Division North"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"tDZ" = ( +/obj/effect/shuttle_landmark/merchant/out, +/turf/space, +/area/space) +"tEC" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/blast_door{ + id_tag = "minshut"; + name = "drill door switch"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"tQY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/ship/exodus_pod_research) +"tRc" = ( +/obj/effect/paint_stripe/mauve, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_research) +"tYK" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"uoa" = ( +/obj/machinery/mining/brace{ + dir = 4 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"uqL" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"uDW" = ( +/obj/effect/floor_decal/sign/or1, +/turf/simulated/floor/tiled/white, +/area/exodus/medical/surgery) +"uFU" = ( +/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/exodus/research) +"uGq" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "EngineEmitterPortWest"; + name = "Engine Waste Handling Access" + }, +/turf/simulated/floor/plating, +/area/exodus/engineering/engine_room) +"uJB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "mining_shuttle_hatch_inner"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"uKl" = ( +/obj/effect/floor_decal/corner/yellow/three_quarters, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering/foyer) +"uLP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id_tag = "Biohazard"; + name = "Biohazard Blast Doors"; + opacity = 0 + }, +/obj/machinery/vending/wallmed1{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/research/xenobiology) +"vbM" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"vcu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"vfH" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"vme" = ( +/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/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"vno" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/engineering) +"vHf" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/exodus/quartermaster/miningdock) +"vKw" = ( +/obj/machinery/shipsensors, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/exodus/bridge) +"vRS" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"vVU" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/ship/exodus_pod_research) +"vZG" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"wby" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/maintenance/locker) +"weD" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "mining_dock_inner"; + name = "Mining Dock Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"wht" = ( +/obj/effect/floor_decal/industrial/radiation, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "minshut"; + name = "drill storage" + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"wiC" = ( +/obj/effect/paint/brown, +/turf/simulated/wall/titanium, +/area/ship/exodus_pod_mining) +"wjf" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"wqh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/starboard) +"wqm" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/sign/warning/docking_area, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"wsi" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"wAA" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"wBc" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"wJf" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/plastic/fifty, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/turf/simulated/floor/tiled/white, +/area/exodus/research/robotics) +"wTp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exodus/teleporter) +"xeI" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"xhz" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_two) +"xpO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "mining_shuttle_hatch_outer"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/exodus_pod_mining) +"xrP" = ( +/turf/simulated/floor/wood/walnut, +/area/exodus/engineering/break_room) +"xtb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "mining_shuttle"; + name = "interior access button"; + pixel_x = 25; + pixel_y = -25 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"xFu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/port) +"xHt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research Shuttle Dock Airlock" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/research/docking) +"xJn" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/shuttle/black, +/area/ship/exodus_pod_mining) +"xNc" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "mining_dock_outer"; + name = "Mining Dock Airlock" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exodus/quartermaster/miningdock) +"xOe" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exodus/research) +"xTA" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ship/exodus_pod_mining) +"xVx" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/arrival/station) +"xVT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"xZr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_three) +"ybr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/item/cell/crap, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/primary/central_one) +"yce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"ydN" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Dormitory Holodeck South"; + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/reinforced, +/area/holodeck/alphadeck) +"yeJ" = ( +/obj/machinery/light, +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/teleporter) +"ygT" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/exodus/quartermaster/miningdock) +"yiU" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/quartermaster/miningdock) +"yjb" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/super/critical{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/exodus/hallway/secondary/exit) +"yjW" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/modular_computer/tablet/lease/preset/medical{ + pixel_y = 6 + }, +/obj/item/modular_computer/tablet/lease/preset/medical{ + pixel_x = -3 + }, +/obj/item/material/ashtray/bronze{ + pixel_x = -15; + pixel_y = -14 + }, +/turf/simulated/floor/tiled/white, +/area/exodus/crew_quarters/medbreak) +"yks" = ( +/obj/effect/shuttle_landmark/ert/dock, +/turf/space, +/area/space) + +(1,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cpf +"} +(2,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(3,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(4,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(5,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(6,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(7,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(8,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(9,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(10,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(11,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(12,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(13,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(14,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(15,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(16,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(17,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(18,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(19,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(20,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(21,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(22,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(23,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(24,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +dYF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(25,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(26,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(27,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(28,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(29,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +cLU +cLU +cLU +tDZ +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(30,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +atf +aFD +cec +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(31,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cec +cex +cec +cLU +aaf +aIo +aph +aph +aph +aph +aph +aph +aIo +aaf +aKz +aLE +aLP +axF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(32,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +cec +cec +awq +cec +ceI +cec +atS +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +axF +aVg +aYk +axF +aaf +crP +crP +crP +crP +crP +crP +aaf +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(33,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ave +ayd +aAl +bdy +cer +ceH +axH +cec +cLU +cLU +esY +aIw +aIw +aIw +esY +cLU +cLU +aaf +axF +aVf +aYi +axF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ctn +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(34,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ifW +avN +ayj +aAp +brq +cev +azk +ays +cec +cLU +cLU +esY +aZJ +rNu +bdc +esY +cLU +cLU +aBI +axF +aBK +aYm +axF +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(35,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +cec +cec +atS +btE +azk +ays +cec +cLU +cLU +esY +aID +iFB +iNs +esY +cLU +cLU +aHF +aBE +aBF +aDn +aBI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(36,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +buv +awH +azh +atS +cLU +esY +esY +aMV +aDK +aMV +esY +esY +cLU +aBI +aCe +aCz +aSH +aBI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(37,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +buv +azt +ayZ +cec +cec +esY +aGq +dJe +lDJ +sNl +tuN +esY +axF +axF +aBV +aBX +aTr +aBI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bcy +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(38,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +buv +azt +azi +azs +aAq +aAw +qmC +aFM +igB +aFM +tYK +aAw +aAx +aBt +aCi +aBX +aVl +axF +cLU +cLU +cLU +cLU +cLU +bcy +cLU +cLU +cLU +cLU +cLU +bgo +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(39,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cec +azq +azt +azk +azr +cec +esY +aGx +aFM +aFM +aFM +wsi +esY +axF +aBk +aRD +aBX +aVj +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aDF +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(40,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auN +bvY +azt +azk +azv +cec +esY +cwU +xVx +aFM +xVx +aIk +esY +axF +aBw +aRD +aBX +aVj +axF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(41,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auN +azu +azt +azk +aBr +cec +aDj +dHF +aFM +aFM +aFM +aCA +aDj +axF +aBv +aRD +aBX +aVj +axF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +cLU +cLU +cLU +cLU +aCj +aCj +aCj +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(42,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auN +asz +aAt +azk +aAn +cec +aDj +aIy +gOE +aFM +xVx +itc +aDj +axF +aBB +aRD +aEz +aVm +axF +cLU +cLU +cLU +cLU +cLU +aDF +cLU +cLU +cLU +cLU +cLU +aCj +czj +cAi +aQd +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(43,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aqD +asA +asA +auN +asy +aAE +azk +aAm +cec +esY +aMV +aMV +aDK +aMV +aMV +esY +axF +aBx +aRD +aDq +aVj +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aCj +cze +czy +aQc +yks +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(44,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +aqD +aqD +aqD +aqD +aqD +aqD +aqD +avL +aym +auN +avY +aAE +azk +azr +cec +esY +aNP +eKH +etN +eKH +oWh +esY +axF +aBk +aRD +aDq +aVj +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aCj +czq +cAk +aTw +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(45,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +cLU +cLU +cLU +atX +atX +atX +art +aqQ +asA +avc +axx +auN +ctA +aAE +azm +aAo +cec +esY +aGH +nOM +lfJ +nOM +dEE +esY +axF +aBC +aCn +aDq +aVl +axF +cLU +cLU +cLU +cLU +cLU +bgo +cLU +cLU +cLU +cLU +cLU +aCj +czk +bsL +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(46,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aph +aaf +cLU +cLU +ato +apC +afB +awB +atQ +auf +auW +axx +atZ +cul +aAE +ayZ +cec +cec +esY +esY +aGb +aGb +aGb +esY +esY +axF +axF +aBV +aDq +aVj +axF +aaf +aTw +aNl +aCj +aaf +bgo +aaf +aTw +aOd +aCj +cLU +aCj +bgw +bsP +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +dNS +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(47,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +cLU +atX +atX +atX +art +atq +avy +avM +axx +atZ +aCt +aAE +azp +cec +cLU +itS +aEI +aEI +aEI +aEI +aEI +itS +cLU +axF +aCe +aCB +aVj +aBI +aCj +aCj +bhr +aCj +aCj +bgo +aCj +aCj +blS +aCj +aCj +aCj +bgw +bsP +bcy +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(48,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +aaf +aaf +aqD +aqD +aqD +aqD +asA +awe +ayq +ayO +azl +aDA +cCP +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aBI +aRI +aDq +aVo +cBu +aYo +aDF +aGB +aDF +beq +bgr +beq +aCj +aTj +aCj +bnu +boZ +bht +bsQ +bgo +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(49,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +cLU +aaf +cLU +aud +aud +aud +arV +aqQ +asA +awI +ayo +atZ +aEY +cvg +cvt +aFN +cxe +cxt +cxt +cxt +cxt +aGV +cxt +cxI +cxJ +cyG +cyL +cza +aVn +aWF +aYn +aZO +bbz +bdi +bep +bdH +bhu +aZO +bkq +aZO +bnt +boY +bho +bsP +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(50,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +cLU +cLU +cLU +atu +asx +ahM +awC +atQ +auV +awG +ayo +atZ +ayy +aFB +aFL +aFP +aCw +aDo +aEL +aEL +aHI +aJt +aLt +rUP +aOK +rUP +rUP +aTt +aVp +aYK +aYp +aZQ +bbB +bdj +ber +bfL +aHN +bgY +bks +blo +bnv +bpa +brc +cJk +aCj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(51,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aac +cLU +cLU +aud +aud +aud +arV +atq +avy +awJ +ayo +auN +auN +auN +auN +aBL +aBL +aBL +aBL +aBL +aIA +aIM +aJA +atJ +atJ +atJ +atJ +aPs +aJA +aIA +aQJ +aUC +aUC +aUC +aUC +bgr +aHM +bgr +bgr +bgr +bgr +bgr +bgr +bgr +bgr +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(52,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aph +aaf +aaf +aqD +aqD +aqD +aqD +aqD +aqD +aqD +cDc +ayr +ayS +avH +avH +avH +cum +aCE +aDz +aEN +aGf +aIA +aId +aLy +aMX +aDl +aEF +aRJ +aTv +aLy +aRp +aYq +cgL +aZX +aYq +aYq +aYO +aHV +bjp +aTl +bmg +biS +bpb +aMv +bsS +aQg +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(53,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aqD +asA +asA +auQ +aGr +aQi +avH +aBD +aCE +aDr +aEM +aGd +aHJ +aJE +aLu +aMX +aDw +aEH +aRJ +aTu +aLy +aRp +aYq +aZV +aZX +bdk +bes +aYO +beM +bjp +bkQ +bjp +aGt +bjp +bfd +aSr +bjp +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(54,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +auQ +auQ +cnl +auQ +ayp +aBD +aCE +aDx +aES +aGj +atJ +aJH +aLy +aMY +aPh +aPh +aMY +rhM +aLy +aRp +aYu +aZX +aZX +aZX +bev +aYO +aJv +biT +bkR +aFa +bpm +asD +bki +boA +aGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(55,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +avZ +awd +atv +aMW +aRH +bye +aBz +aCE +aBT +aEO +aGh +aHR +aJH +aLy +aMX +aPh +aPh +aRJ +rhM +aLy +aRp +aYs +aZW +aZX +aZW +bet +aYO +aHZ +bjp +bkR +aFa +bnT +aYP +bhv +aYP +aGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(56,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aaI +aaI +aam +aaI +aaI +aaI +aam +aaI +aaI +aaf +ayl +ayl +ayl +aSN +aAj +aBD +aCE +aDI +aES +aGm +atJ +aJL +aLy +aDk +aIJ +aIJ +aDk +rhM +aLy +aRp +aYw +aZZ +aZX +bdm +bdm +aYO +aHV +bjp +bkS +bjp +aWM +bnF +bjp +bjp +bjp +aaf +crP +crP +crP +crP +crP +crP +crP +crP +crP +aaf +crP +crP +crP +crP +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(57,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +ayl +aBD +aCE +aFH +aEU +aHj +aIA +aJK +aLy +aIA +aIA +aIA +aIA +aNV +aVs +aWI +aYv +aZY +bbD +bbD +bbD +bhC +aKV +bjp +bkT +bjp +aVr +bpR +bjp +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(58,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aop +apk +apV +cLU +aop +apk +apV +cLU +aop +apk +apV +cLU +cLU +cLU +cLU +ayl +aBD +aCE +aCE +aGP +aCE +aIA +aoS +aLy +aNb +aOP +aQk +aRP +rhM +aVu +aIA +aYz +bab +bbG +bbG +bbV +aYO +aMB +aSU +aTn +bjp +bjp +bkm +bjp +cLU +cLU +cLU +cLU +ctn +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(59,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +aaI +aaf +aop +apj +apV +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +cLU +ayl +aOB +bsi +bke +awV +axJ +aIE +aJO +aLz +aLz +aLz +aLz +aLz +aLz +aVt +aIA +aYx +baa +bbF +bdn +bew +aYO +aOh +bjm +aTm +bmV +bps +bqG +baj +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(60,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +aop +apj +apV +aaf +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +cLU +ayl +aue +aCy +aDX +cxb +bdw +aIF +aJQ +aLA +aNf +aOR +ewE +aRQ +aTy +aVw +aIA +aYO +aYO +aYO +aYO +aYO +aYO +baj +bqU +aTq +aHq +blv +bqK +aKJ +aaf +cLU +apc +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aIo +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(61,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +cLU +auQ +aBP +aCx +auQ +awN +aFC +aFC +aLw +aFC +aLs +nvs +aLy +aIA +aIA +aIA +aIA +aTR +aHq +bag +bdo +beB +bfM +aKe +aSW +aTp +aHq +bnY +bqK +aKJ +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(62,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +cLU +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +aop +apj +apV +cLU +cLU +cLU +aoN +aAF +aAF +aAF +aAF +aFx +aFC +aGQ +aJZ +aFC +aNg +aNB +aNg +aLK +bxH +aXe +aXe +aGw +aYQ +bbY +bdp +beF +bfM +aSW +cCO +bml +aHq +bnZ +bqK +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(63,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +cLU +aaf +acy +aaf +aaf +aaf +acy +aaf +cLU +cLU +acy +cLU +cLU +aoN +aoN +aoN +aAv +aBH +aEc +aAF +awX +aFC +aHS +aJS +aFC +aNe +aNz +wjf +aLK +aHq +aHq +aXe +aYR +bai +bai +bai +bai +bai +bai +bai +bmo +bmW +bmW +bqM +bnP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaI +aaI +aaI +aaI +aaI +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(64,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +alX +amL +amL +amL +alV +amL +amL +amL +alV +amL +amL +amL +alV +amL +awW +azj +aAy +aEE +aSE +awD +avi +awf +awZ +baz +aHU +aJG +aFC +wBc +aOV +scJ +aSV +aVA +aVA +aFj +aYC +baj +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bbZ +bkW +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(65,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +aaf +aaf +acy +aaf +cLU +aaf +acy +aaf +cLU +cLU +acy +cLU +cLU +aoN +aoN +aoN +aAH +aBS +aAs +aDZ +aFh +aIK +ayN +aKa +aFC +aNi +aOU +wjf +aLK +aTS +aTS +aTS +aTS +aTS +bbZ +bdq +bbZ +bdq +bbZ +bdq +bbZ +bdq +bbZ +bpU +brG +cLU +cLU +cLU +cLU +cLU +bXm +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(66,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaq +aaI +cLU +aaf +aop +apn +apV +cLU +aop +apn +apV +cLU +aop +apn +apV +cLU +cLU +cLU +aoN +aAF +aAF +aAF +aAF +aHd +aFC +aFC +aFC +aFC +aEp +aOW +wjf +aLK +aTA +aUr +aWJ +aYD +bad +bbZ +bds +bbZ +bfN +bbZ +biV +bbZ +blq +bbZ +bkW +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaI +aaI +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(67,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aop +apn +apV +cLU +aop +apn +apV +cLU +aop +apn +apV +aaf +aaf +cLU +cLU +anX +amo +aCK +aDJ +aFk +aGu +aHY +aHY +auT +wBc +aOW +aQm +aLK +aTz +aTz +aTz +aTz +bac +bbZ +bdr +beG +beG +bhz +biU +beG +beG +bbZ +bkW +bnP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +aaf +aaf +aaf +aaf +crP +aaf +aaf +aaf +cto +aaf +cbO +crP +crP +crP +crP +crP +crP +crP +crP +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(68,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +aop +apn +apV +aaf +aop +apn +apV +aaf +aop +apn +apV +cLU +aaf +cLU +cLU +anX +aBU +aEd +aDM +bBh +bBi +bCu +bDu +bDx +bDI +bDS +bFi +aLK +aKp +aTz +aTz +aTz +baf +bbJ +bdt +beH +bfP +beH +bfP +bku +blr +bbZ +bkW +brG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bqY +apc +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aIo +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aam +aam +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(69,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aaI +aaf +aop +apn +apV +cLU +aop +apn +apV +cLU +aop +apn +apV +cLU +aaf +cLU +cLU +alL +ayC +aCK +aDL +aFn +aFn +aIc +aJT +auT +wBc +aOY +bDV +aLK +aJP +aTz +aWK +aWK +bae +bbZ +bbZ +bbZ +brG +brG +brG +brG +brG +brG +bkW +baj +aap +cLU +bpf +aQC +aRB +bpf +aRB +aRF +bpf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQh +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(70,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aop +apo +apV +cLU +aop +apo +apV +cLU +aop +apo +apV +aaf +aaI +cLU +cLU +alL +ayC +aCK +aDO +aFn +aFn +aFn +aJX +auT +wBc +aOY +bFA +aLK +aTE +aTz +aWQ +aWN +bal +aXs +beJ +bfT +brG +bgi +bgi +bgi +bgi +brG +aTQ +baj +aap +cLU +aLF +bxR +bzl +aLF +bCE +bEf +aLF +cLU +cLU +wiC +bLX +wiC +wiC +wiC +bLX +wiC +wiC +wiC +wiC +wiC +nCx +cLU +aQh +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aam +aam +aam +aam +aan +aam +aam +aam +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aam +aam +aam +aam +aam +aaf +aaI +aaI +aaI +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(71,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aaf +aaf +cLU +cLU +aaI +cLU +cLU +alL +aHQ +aCK +aDN +aFn +aFn +aFn +aJV +auT +wBc +aOY +bFx +aPp +aTz +aTz +cgH +aYA +bak +aTz +bdv +bfS +brG +bgi +bgi +bgi +bgi +wby +aTQ +bdP +aLF +aLF +aLF +bzK +bBu +aLF +bBu +bFb +aLF +cLU +cLU +fKm +dkO +mUd +fuZ +vRS +lDi +oxE +vbM +vbM +xTA +miB +pkr +cLU +aQh +aaf +aaf +aaf +aaf +aam +aam +aam +aan +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(72,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aaI +aaI +aaq +aaI +aaI +aaI +aam +aaI +aaI +aaI +aaI +aaI +cLU +cLU +anX +ayC +aCK +aCh +aFr +aFn +aIi +aHY +auT +aNn +aPe +bFT +aRR +aTJ +aTJ +aXn +aYE +ban +bbN +bfO +bfT +brG +bgi +bgi +bgi +bgi +wby +aTQ +bdP +bhI +bkw +bvU +bxS +bzn +bqW +bwb +bEh +bdP +cLU +cLU +fKm +dRD +bPb +wiC +dsT +pyU +xJn +dsT +xJn +tpe +vZG +pkr +cLU +aQh +cLU +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aam +aam +aam +cLU +cLU +aan +aam +aam +aaI +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +cKN +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(73,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +anX +ayC +aCK +aDP +aFn +aFn +aFn +aJY +auT +wBc +aPd +bFI +aLK +aTF +aVy +aWO +aWK +bam +bbc +aTS +aTS +brG +bgi +bgi +bgi +bgi +brG +bgq +bdP +bsT +brd +bvU +bxS +bzm +brd +bCG +bDL +bdP +cLU +cLU +wiC +bMs +wiC +wiC +wiC +lir +wiC +wiC +wiC +wiC +wiC +nCx +cLU +aQh +cLU +cLU +aaf +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +aan +aam +aam +aam +aam +aaf +aaf +cLU +cKM +cLU +aaf +cLU +aaI +aaI +aaq +aaI +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(74,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anX +anX +anX +anX +ayC +aCK +aBW +aFn +aFn +aIm +aKi +auT +wBc +aPd +bFV +aLK +aTL +aTz +aTz +beI +bam +bbO +bgg +bgg +brG +brG +brG +brG +brG +brG +bhA +bsx +bsW +buC +bwd +bxT +bzp +bBm +bCH +bEi +aLF +cLU +cLU +cLU +bNr +wiC +uoa +wht +tEC +eOv +fNm +jcK +nWk +wiC +nCx +cLU +aQh +cLU +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cKM +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(75,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anX +aBU +atd +atd +auL +aCK +aDS +aFs +aFs +aIj +aKd +aLC +aNo +aPf +bFI +aLK +aTK +aTz +aTz +aTz +bam +bbO +bgf +bgf +bgf +bgl +aTS +bxH +aSI +bdO +bgN +bdP +biY +buB +bwc +bwc +bzo +brd +bvU +bEi +aLF +cLU +cLU +cLU +cLU +wiC +gny +wht +noV +vbM +tzU +xTA +diZ +ibm +pkr +cLU +aQh +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIu +cIu +cIu +cIu +cIu +aaf +cKM +aaf +cIu +cIu +cIu +cIu +cIu +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(76,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +aam +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aaf +anX +ayC +anX +aJw +ark +aCK +aEj +aFO +aIV +aHY +aKt +avu +aNq +aPg +bGh +aLK +aTN +aTz +aTz +aYG +bap +bbQ +bdC +bdC +bdC +bhD +aTS +aXe +bmt +bdP +bdP +bdP +bsY +buE +bwf +bwf +bzr +brd +bvU +bEi +aLF +cLU +cLU +cLU +cLU +wiC +gYF +wht +tDD +tDD +rTB +xtb +hWY +wiC +nCx +cLU +aQh +cLU +cLU +cbO +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIw +cIU +cIU +cIU +cIU +anD +anH +anD +cLL +cLL +cLL +cLL +cLP +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(77,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +abQ +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +anX +ayD +anX +anX +anX +aCK +aCK +aCK +aCK +aCK +aCK +aLK +aNh +aNC +aOS +aLK +aTM +aTM +aWR +aTM +bao +bbP +bdB +beK +beK +bhB +bkk +blb +bmu +bdP +bpe +blP +nIv +buD +bwe +brd +bzq +brd +bvU +bEi +aLF +aaf +cLU +cLU +cLU +wiC +wiC +wiC +wiC +wiC +wiC +uJB +wiC +wiC +nCx +cLU +aQh +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIv +cIv +cIv +cIv +cIv +aaf +cKM +aaf +cIv +cIv +cIv +cIv +cIv +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(78,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aam +aam +aaI +aaf +aaf +cLU +abW +cLU +aaf +cLU +aaI +aaI +aaq +aaI +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +alL +ayC +aoV +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +awn +aNr +hOb +aSz +aLK +aUe +aUe +aUe +aUe +aTS +aTS +aTS +aTS +aTS +aTS +aTS +blc +bmt +bdP +brd +brd +bsX +buD +bwe +brd +bzq +brd +bCG +bEi +aLF +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +sgQ +qJE +oLV +jqj +kyr +cLU +cLU +aQh +cLU +cLU +aam +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cKM +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aaq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(79,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +aaf +cLU +cLU +aaf +abW +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +alL +ayC +aoT +aaf +aBY +aBY +aBY +aBY +aBY +aBY +aaf +avV +aNr +aOW +bFI +auT +aTO +aVz +aWS +aUe +aGA +aXe +aXe +aXe +aXe +aSO +bjx +bld +bmt +bdP +bhG +bzq +bsX +buD +bwe +bxU +bzq +brd +bvU +bEj +bdP +vHf +vHf +vHf +vHf +vHf +vHf +vHf +vHf +wiC +wiC +xpO +wiC +wiC +cLU +cLU +aQh +aaf +aaf +aam +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIu +cIu +cIu +cIu +cIu +aaf +cKM +aaf +cIu +cIu +cIu +cIu +cIu +aaf +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(80,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aas +aas +aas +aas +aas +aaf +abW +aaf +aas +aas +aas +aas +aas +aaf +aaI +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +alL +ayC +aoT +cLU +aBY +aCD +aDU +aFt +eaE +aBY +cLU +avV +aNt +aPj +bGj +aRS +aTT +aVC +aWZ +aUe +bav +bch +bdO +bdO +bdO +bif +bdO +ble +bla +bdP +biq +brd +bsX +buH +bwg +bxW +bzs +bxW +bxW +bEl +bdP +bIZ +pGo +pGo +pGo +dzA +pGo +iKS +vHf +ePM +wqm +xNc +fkV +sOl +cLU +cLU +aIo +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIw +cIU +cIU +cIU +cIU +anD +anH +anD +cLL +cLL +cLL +cLL +cLP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(81,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +aam +cLU +aar +aaw +aaw +aaw +aaw +abm +abU +abm +ada +ada +ada +ada +aer +cLU +afm +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +alL +ayC +aoT +aaf +aBY +aCC +gcu +gcu +aFv +aIQ +atU +axk +aNs +aPi +bFI +auT +aTP +aVB +aWY +aUe +baw +bci +bdP +bdP +bdP +bdP +bdP +blf +bdP +bdP +bhN +bzq +bsX +buF +brf +brf +brf +brf +brf +bEk +aLF +bJb +bNB +ccN +ccN +ccN +bPc +jsn +bGt +bGt +lEx +ygT +aSC +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIv +cIv +cIv +cIv +cIv +aaf +cKM +aaf +cIv +cIv +cIv +cIv +cIv +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(82,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aav +aav +aav +aav +aav +aaf +abW +aaf +aav +aav +aav +aav +aav +cLU +aam +cLU +cLU +cLU +cLU +abf +abi +abi +abf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anX +awb +axo +anX +ayE +aoW +cLU +aBY +aCF +aCG +gcu +aGv +aKj +aQG +aKm +aNu +aPl +bFI +aLK +aUe +aUe +aUe +aUe +bax +bbS +bdP +aGE +aZx +beP +bfV +bgk +bpn +bny +bpn +bpn +bta +buD +brd +bxX +brd +brd +bzu +bzu +aLF +bJb +bHB +bUk +gdx +jfD +yiU +qqx +fTj +weD +oRC +kZQ +aSC +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aac +cLU +cLU +cLU +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cKM +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(83,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +aaf +aaf +aaf +abW +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +cLU +abi +aid +agb +abf +abf +abf +abf +abf +abf +abf +anX +anX +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anX +awc +aso +anX +ayC +aoT +aaf +aBY +gcu +gcu +gcu +aFy +aIQ +atU +axk +aNr +aPk +bGk +aSZ +aUi +aUi +aUi +aUi +aKg +bbR +bfe +aMA +aMS +beN +brf +bfX +bhJ +bdP +bpk +brf +bsZ +buI +hkD +bdP +bBn +bCn +bEm +bHg +aLF +bJb +bKH +bUk +gdx +dMi +yiU +bCx +kwY +rMt +aSC +aSC +bGt +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIu +cIu +cIu +cIu +cIu +aaf +cKM +aaf +cIu +cIu +cIu +cIu +cIu +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(84,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aan +cLU +aas +aas +aas +aas +aas +aaf +abW +aaf +aas +aas +aas +aas +aas +aaf +aam +cLU +cLU +cLU +cLU +abi +aeU +agb +ajA +agB +adE +adE +adE +adE +anv +anY +anX +alL +alL +alL +alL +alL +anX +anX +anX +arC +axb +cgn +ayC +aoT +cLU +aBY +aCD +aDW +aEa +aGz +aBY +cLU +avV +aNr +aPm +bGl +aLK +aLK +aVG +aVG +aVG +baj +bbT +bdP +bzu +bzo +brd +bfU +bsX +bhX +bdP +bqh +aKR +btd +buK +aKR +bdP +bdP +bdP +bdP +bdP +bdP +bpd +bGt +bGt +bGt +bGt +bGt +jTK +bGt +aaf +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cIw +cIU +cIU +cIU +cIU +anD +anH +anD +cLL +cLL +cLL +cLL +cLP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(85,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aar +aaw +aaw +aaw +aaw +abm +abU +abm +ada +ada +ada +ada +aer +aaf +aam +cLU +cLU +cLU +cLU +abi +axX +aiD +abf +afZ +agD +agD +amy +agD +agD +ajF +auc +auc +auc +ark +asX +asb +alo +amo +anX +arz +awR +anX +ayC +aoT +aaf +aBY +aBY +aBY +aBY +aBY +aBY +aaf +avV +aNr +aPm +bFI +aUa +aLK +aVH +aXp +aVG +bnZ +blc +bdP +bzu +bzo +bfU +brd +bhE +brd +bdP +bpq +bri +btc +buJ +bwh +bxY +bzv +bBq +bCM +bpo +bGt +aXM +sgI +bGt +bMh +wAA +buo +hZL +bGt +bGt +cLU +cLU +cLU +aaf +cLU +apc +aQh +aQh +apc +aaf +cLU +cLU +cLU +cLU +cLU +apc +apc +apc +apc +apc +cLU +aac +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cIv +cIv +cIv +cIv +cIv +aaf +cKM +aaf +cIv +cIv +cIv +cIv +cIv +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(86,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aav +aav +aav +aav +aav +aaf +abW +aaf +aav +aav +aav +aav +aav +aaf +cLU +cLU +abf +abf +abf +abf +abf +abf +abf +aga +agD +alr +ahK +amN +agD +agU +apb +apb +apb +apb +apb +apb +apb +anY +anX +arX +asB +axI +ayG +ape +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +axs +aNr +aPn +bGm +aQl +aVI +aCq +aKf +aVG +aKh +aKk +bdP +bzu +beL +brd +bfW +bhH +bFN +bog +bpt +brk +btg +buM +bwj +bga +bga +bga +bga +bEq +bGt +fPv +bKK +cUO +xeI +bKK +bKK +hZL +bRV +uqL +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cKM +cLU +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(87,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abW +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +abi +aeT +afy +aiD +aix +agb +agb +afZ +agD +agC +ahK +amM +apM +apM +apM +apM +asw +asw +asw +asw +asw +afo +apb +arR +axc +apu +ayD +anX +anX +anX +anX +anX +anX +anX +anX +anX +aLK +aNv +aPm +bFI +aRT +aLK +aKc +aXr +aVG +baj +bco +bdP +bdP +bdP +bdP +bdP +bdP +blf +bdP +bqk +bqa +btf +buL +bwi +brk +brk +bBs +brk +bEp +bGt +bHA +bKK +bKK +bMi +bKK +btV +hZL +bRV +aSC +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cKM +cLU +cLU +cLU +cLU +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(88,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aas +aas +aas +aas +aas +aaf +abW +aaf +aas +aas +aas +aas +aas +cLU +cLU +cLU +abi +agB +adE +adE +adE +adE +ajl +agc +agD +agQ +ahB +ajB +apM +aqF +aqC +ast +asN +asR +arW +avq +asw +auo +aCd +azg +aul +awT +ayA +azO +azO +azO +azO +azO +azO +azO +azO +azO +aNX +aNx +aPo +bGn +aRV +aLK +aVK +aRs +aVG +bbL +bco +bdD +bfi +bfi +bfi +boi +boh +blm +bfm +bqk +brm +btz +buP +bwo +bwo +bzx +bBt +bwo +bEt +bFZ +bHD +bJd +bJd +bMl +bNt +bPm +bDR +bRV +aSC +aaf +cLU +cLU +cLU +cbO +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cKM +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(89,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aar +aaw +aaw +aaw +aaw +abm +abU +abm +ada +ada +ada +ada +aer +aaf +cLU +cLU +abi +afZ +ahi +ahi +ahi +ahi +ahi +ajH +agD +alP +ahy +aiC +apM +aqx +arM +ass +asN +asO +atY +avn +asw +anX +anX +anX +anX +anX +ayI +apD +apD +apD +apD +apD +apD +apD +apD +apD +aLK +aNw +aPi +hgF +aQq +aLK +aUm +aUm +aUm +aUm +bcp +bdS +beQ +bfZ +bhK +bfm +bfm +blB +bnz +aJx +brl +aLL +buO +bwl +cFY +bzw +bga +bga +bEs +bGt +bHC +bJc +bKK +bMk +bNs +bPi +bCA +bGt +bGt +aaf +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cKM +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(90,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aav +aav +aav +aav +aav +aaf +abW +aaf +aav +aav +aav +aav +aav +aaf +cLU +abf +abf +afZ +ahi +ahS +aiA +aiY +ahi +akW +agD +agD +aiB +agD +apM +arx +arZ +arx +asN +asN +auj +asN +asw +aie +aie +aie +aie +anX +axM +apD +aAB +aBM +aBM +arS +aCP +aGl +bdL +bUO +aLK +aNy +aPi +hgF +aRW +aLK +aVE +aXd +aYH +bar +bcp +bdS +beS +bgh +bgh +biZ +bkB +blC +blC +bpu +brp +bfm +bfm +bwr +aMh +aMh +bBv +aMh +bGv +bGv +aQO +aQO +aQO +bMn +bGv +bGv +bEU +bGt +bGt +aaf +bVO +bUu +bVO +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +cLU +cLU +cmQ +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(91,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +cLU +abW +cLU +aaf +cLU +aaf +aaf +aaf +cLU +cLU +abf +att +afZ +ahi +afQ +aio +aiX +akx +ajW +akI +alv +aic +amS +anI +aor +arY +alv +apW +aru +aui +arn +agD +aie +aie +aie +aie +anX +axM +apD +aAA +aBJ +aCL +aEb +aFA +aGK +aIp +aKl +axv +wBc +aPi +hgF +aNk +auT +aVD +aVM +aXg +baq +bcp +bdS +beR +bga +bga +bga +bga +bga +bga +bga +brn +bfm +cqb +bwp +bya +bzy +bgh +bCN +aQO +bGe +bHE +bJe +bKM +bMm +bNz +bGv +bEe +bNx +bNx +bUv +bVO +bUY +bVO +bZf +bfY +bsR +cej +cej +aZR +aZR +aZR +aZR +aZR +cej +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cIc +aaf +aaf +bBp +cLK +bBp +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(92,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +cLU +cLU +cLU +cLU +abW +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abf +afT +afZ +ahi +ahU +aiF +aja +akR +ajY +akK +aly +aly +aly +anJ +aot +asr +aoD +aly +arv +aur +asK +agD +awy +awy +awy +aie +anX +axM +apD +aAD +aBO +aCO +aEg +aFF +aGR +aIt +aKo +aLG +aNA +aPq +bGp +aQG +aTU +aVL +aXh +aYI +aUX +bcp +bdT +bfm +bez +bga +bga +bkC +bga +bga +bga +brt +bhx +bga +bga +byb +bga +bga +bga +aQO +crb +bHH +bJg +bKO +bMo +bNH +bGv +bFE +bFO +cxK +bUv +bVO +bVM +bVO +bZf +bhs +bvV +cej +bPe +cgU +cgU +cgU +cfJ +cgU +cnq +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cHK +cLU +cLU +aaf +bBp +bXk +bBp +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(93,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaq +aam +aaf +cLU +cLU +cLU +cLU +abW +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +abf +afU +afZ +ahi +ahT +aiE +aiZ +akR +ajX +akJ +ahX +ahX +alz +alW +arL +asc +arL +alW +arL +aun +arL +agW +awx +aQs +awy +awy +anX +axM +apD +aAC +aBN +aCN +aEf +aFA +aGN +aIs +aKn +axv +qHU +xFu +hgF +aRX +aLK +aVF +aXg +aXg +bas +bcp +bdS +bfm +bgj +bga +bga +bga +blE +bga +bpw +brt +bfm +buS +bga +byb +bkC +bga +bga +aQO +bHF +bHF +bJf +bKN +bMo +bNG +bGv +bQv +bVT +cxK +bUv +bTZ +bVN +bTZ +bZf +bgb +buy +cej +bOS +cgU +cfJ +chf +cgU +cgU +chi +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +bBp +bBp +cfv +bBp +bBp +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(94,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +aaf +aaf +cLU +aac +cLU +abW +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +abf +aeV +afZ +ahi +ahW +aiH +ajb +alq +aka +akL +alA +ama +amU +alW +aov +amQ +apY +alW +aov +ase +apY +awv +aFq +awv +awv +awy +atc +axM +apD +aAG +aBM +aBM +asu +aCQ +aGS +aBM +aJc +aMb +aNp +aOQ +aOT +aMb +aUm +aVM +aXi +aXg +baB +bcq +bdU +bfm +bgs +bhL +bja +bkD +blH +bnA +bfm +brx +bfm +buT +bws +byf +bga +bBw +bCb +bGv +bGs +bGK +bJi +bKP +bMp +bNI +bGv +bQv +bFL +bFR +bNx +bVS +bbA +bJR +bZg +bjF +buy +cnp +cep +cgU +chf +chf +chf +chf +chf +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cGQ +cHq +cGQ +cHq +cLU +cIK +cmD +cng +cLs +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(95,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +abZ +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +abf +avk +adQ +ahi +ahV +aiG +ahT +akR +ajZ +akJ +alz +alz +amT +alW +aou +amA +apX +alW +ary +asd +asM +awv +axe +aQt +aQt +awy +axK +axM +apD +apD +apD +apD +apD +apD +apD +azI +apD +aMb +aNE +vcu +bHh +aMb +aMb +aBs +aBs +aBs +aBs +aMb +aMb +aMb +aMb +aMb +aMb +aBs +blF +aBs +aMb +brw +btC +aLR +aLR +byc +bzz +aLR +aLR +btC +btC +btC +btC +btC +btC +bGv +bGv +bQv +bFL +ccx +bNx +bNx +bHt +bNx +bZg +bLM +bzd +cej +ccY +chf +chf +chf +chf +chf +chf +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cGR +cGR +cGR +cGR +cLU +cIK +cKr +cEw +cJT +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(96,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaJ +aaf +aaf +abd +abX +abe +aaf +aaf +aaf +aaf +cLU +cLU +cLU +abf +afZ +aha +aha +aho +aho +aho +aho +akc +akN +alW +alW +alW +alW +ajy +ank +ajy +alW +ajy +asg +ajy +awv +aJU +aQy +byW +awy +axL +ayJ +azQ +azQ +azQ +azQ +azQ +azQ +aHn +aIW +aKC +aMb +aNE +aLM +kVV +vcu +aTV +vcu +vcu +vcu +vcu +bbt +beU +vcu +bgu +bfR +bjb +bkE +ybr +bkE +bpz +brz +bti +bBx +bBx +byh +bzC +bBx +bBx +bEu +bBx +bBx +bBx +bKQ +btC +bvF +bKm +bNl +bYE +cbr +bSj +ccz +bIs +cxK +bZg +bMN +cbu +cej +cfx +cfG +cgO +cjL +chf +cms +cnr +cnD +cLU +cLU +cLU +aaf +cLU +cLU +cfE +cfE +cfE +cfE +cfE +cfE +cfE +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cGR +cGR +cGR +cGR +cLU +cIK +cJn +cMg +cLQ +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(97,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +abe +acf +abd +aaf +aaf +aeW +aeW +aeW +aeW +aeW +aeW +afZ +aha +ahj +ahl +ahl +aje +aho +ajZ +akM +anc +amb +amV +ajd +aow +amR +app +aqN +aoy +aoz +avr +awv +aIh +aQx +byP +awy +axM +auc +aIl +auc +aJw +anX +aub +aFW +aHo +aIX +aKD +aOi +aND +aPt +bgA +aRY +aRY +aRY +aRY +aRY +baC +bbU +bdF +sCJ +bgt +aRY +aRY +aRY +aRY +aRY +bpy +bry +bth +buU +buU +byg +bzB +bzB +bzB +bzB +bzB +bzB +bJk +ouk +btC +bux +bvS +bQw +bxI +bTn +bRS +bRS +bUM +bNx +bZg +bmL +bKn +cej +cej +cej +cej +cmm +cej +cej +cnD +cnD +bUg +bUg +bUg +cfE +cLU +cLU +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cGR +cGR +cGR +cGR +cLU +cIK +cJa +cJG +cIK +cIK +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(98,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abe +abe +abz +abd +abe +cLU +aeW +aoq +aoq +aoq +aoq +aeW +afZ +aha +ahm +ahZ +ahZ +aji +alB +ake +akP +ani +ame +amX +anK +aoy +amR +aoy +aoz +aoy +aoz +avr +awv +aMx +awv +awv +awy +axM +ayL +ayL +ayL +ayL +ayL +ayL +ayL +ayL +ayL +ayL +aJe +aNI +aPu +bca +aLQ +aLQ +aLQ +aLQ +aKF +baD +bca +bgC +aLQ +aLQ +aLQ +aLQ +bFK +blL +bnB +bpA +brA +btj +buk +bwz +byi +bzH +bzH +bCP +bEx +bGu +xZr +bJm +bKS +bNQ +bOX +bOZ +bQx +bNw +cct +bNw +bVU +bII +bKg +blx +byk +bLu +cey +bLP +bNv +cbv +cjN +ckM +bwP +bxG +bLY +bPC +cbZ +bjI +cfE +cLU +cLU +cfE +cmj +cmj +cmj +cmj +cmj +cfE +bxK +bxK +bxK +bxK +bxK +bxK +cLU +cGS +cGS +cGS +cGS +aaf +cIL +cld +cMh +cLv +cKg +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(99,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abd +aaK +aci +acB +abd +cLU +aeW +aoq +aoq +aoq +aoq +aeW +afZ +aha +ahl +ahY +aiI +ajg +aho +akd +akO +anc +amc +amW +ajd +aox +anZ +aqa +aqO +arB +aqO +avs +aww +aLB +aQz +awm +atx +axM +ayL +aBa +aBa +ayL +aBA +aCV +ayL +aGT +aIB +aNO +aJe +aMk +aPu +eEV +auk +auk +auk +auk +aNJ +aLM +bbW +bdY +bdY +aEA +aEG +aEK +bdY +bmG +bmG +aJu +aHB +bmG +bmG +bwt +aLR +aLR +aLR +aLR +bEw +bGB +ixD +bJl +bKL +btC +bNx +aSK +aSK +aSK +aSK +aSK +bNx +bNx +bNx +blw +bra +ccC +cew +cfH +bMS +bQe +ccB +bwN +bwO +bxc +bxJ +bNP +cbU +bjJ +cfE +cfE +cfE +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cDh +cDy +crR +cEV +cDh +bxK +cBN +cHR +cHR +cHR +cHR +cIp +cIL +ckX +cJI +cJW +bCo +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(100,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +abd +abu +abY +acx +abd +cLU +aeW +aoq +aoq +aoq +aoq +aeW +afZ +aha +aho +aij +aho +aho +aho +ajZ +akJ +alW +alW +alW +alW +arf +aoa +aqc +aqS +arF +asi +asP +aoz +aNm +aQA +awp +atx +axM +ayL +azy +ayM +ayL +aBG +azy +ayL +azy +azy +azy +aJe +aNH +aPu +eEV +auk +aaf +cLU +auk +aNJ +baF +bcc +bdY +bfn +aON +aQj +aQR +aRN +bmG +bgp +bjh +bmi +bpi +bmG +bwB +byj +byj +byj +bCQ +byj +btC +bHL +bJl +fKS +btC +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abw +bYI +bYI +bYI +bYI +bYI +bZc +chk +aZU +aZU +aZU +clg +cfE +bMc +bSh +ahP +bkH +cfE +cik +ckT +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cDm +cDU +cbw +cDU +cGc +cHa +cBN +cef +cIx +cIx +cJj +cIr +cIL +ckX +cJI +cJe +bCo +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(101,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aah +aap +aal +aah +aaf +aaf +aaf +abd +aai +abV +acz +abd +cLU +aeW +aoq +aoq +aoq +aoq +aeW +afZ +aha +ahn +aia +aiT +ajr +alH +akf +akQ +ant +amf +amY +ajh +aoz +aoz +aqb +aqR +aIq +asi +aoz +aoz +avo +aoy +aoI +atx +axM +ayL +azx +apK +ayL +apK +aEk +ayL +apK +aIC +apK +aJe +aNG +aPu +eEV +auk +aaf +cLU +aJe +aZh +baH +bcg +bdY +bgM +bgO +bip +bgO +bls +bmG +bnC +bpB +brB +bmG +bmG +cco +bro +bto +bvw +bvw +bvw +btG +bHK +bJn +bKT +btC +cLU +aSL +aTc +aTx +aTc +aUc +cLU +cLU +aVQ +bZY +cbx +bVn +bYI +cix +chj +ciu +chI +aZU +bRq +cdP +bMa +bRW +all +avT +cgE +cij +ckK +cfE +cmj +cmj +cmj +cmj +cmj +cfE +cDi +cDA +cEk +cEn +cEk +cGZ +cBN +cGC +bTm +cIV +cJi +cIq +cIL +ckX +cJI +cJe +bCo +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(102,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aag +aap +aap +aap +aak +aax +cLU +cLU +aaf +abd +abr +acb +abd +abd +abf +aeW +aeW +agb +agb +aeW +aeW +afZ +aha +ahq +aia +aia +ajR +alM +aki +akS +anx +amh +ana +anL +aoA +apA +aqe +aqT +arG +ask +asQ +asQ +aOX +aQD +aws +atx +axM +ayL +azA +aAL +aBZ +aCS +aEl +aDR +aGU +aEl +aKs +auk +aNI +aPu +eEV +auk +cLU +cLU +aUp +aCp +baP +aDH +bdY +bfp +bgP +bfj +bhd +bmy +bmG +bnc +bpD +bsa +bmG +buY +bwG +bIV +bzJ +bBz +bCS +bEg +btG +bHN +bJp +fKS +btC +cLU +aSM +bEb +ctb +bIR +aSM +cLU +cLU +aWc +bZZ +cby +ccH +bYI +cfM +chm +ciw +cjQ +clc +cmA +cgM +bMf +bTV +cdC +cfD +cfE +cjI +ckW +cfE +cfE +iXX +iXX +iXX +cfE +cfE +cDt +cpD +cEn +cEn +cEn +cHg +cBN +cGI +bTB +cIX +cJl +cIs +cIL +cJf +cLJ +cJX +bCo +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(103,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aah +aap +aap +aak +aao +aat +cLU +cLU +aaf +abi +abt +acj +acu +ade +ade +ade +ade +aeg +ade +apU +ade +afq +aha +ahp +aim +aiV +ajw +alI +amu +amZ +ahb +amg +aoM +ajp +aoz +apz +aqd +aoz +aoz +aoz +aoz +aoz +aoz +aqd +awr +atx +axM +ayL +azz +aAI +aBQ +aKr +azy +azy +aKr +azy +aKr +fnT +aNI +aPu +eEV +auk +cLU +aaf +aUp +aZi +baK +bcI +bdY +aXG +bex +aQu +aRm +bma +bmG +bnD +bpC +brD +bmG +buX +bxi +bxk +bxk +bBy +bCR +bEy +btG +bGq +bJl +fKS +btC +cLU +aSM +bQI +bRX +bPf +aSM +cLU +cLU +bYI +aXb +aXb +ccF +bYI +bZr +chl +civ +cjP +aZU +cmy +cnG +cnG +bKG +bKG +cnG +cnG +cip +ckU +ckY +cnx +coz +cdC +cdC +cps +bwE +ckf +cDV +cEE +cFt +cDV +cHf +cBN +cHT +cLS +cLZ +cMa +cMb +cIt +cJg +cLC +cJX +cKg +aaf +cLU +cLU +cLU +aaf +abc +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(104,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aah +aah +aaj +aah +aat +aat +aaf +cLU +abh +abh +abh +abh +acp +acp +acp +acp +acp +acp +agb +aed +agb +agn +aha +ahs +aiw +aiW +akh +alS +akl +akV +agW +amj +anb +alW +anr +aoz +aqg +aqV +arH +asn +asS +aty +aup +aqd +awt +atx +apQ +aqs +azC +aAN +aCb +aCU +aEn +aGY +aKy +aIG +aGW +aLI +aNK +aPu +aNR +aJe +klA +aUp +aUp +aUp +baU +aUp +bdY +bfr +bex +aQv +aRx +bjE +bmG +bvG +bor +bsA +bmG +bva +bxj +byH +bxk +bBA +bCU +bEA +btG +bHM +bHO +bHM +btC +bNy +aSX +bQC +bUo +bTr +aSX +bNy +aVv +bYI +bgc +aXb +ccK +bYI +cbD +cho +ciy +ceQ +aZU +cmB +bKG +bQa +qJW +cjw +cnB +bjV +cjK +cma +cpo +cpo +cpr +cpo +aXo +aYX +cEJ +cDj +cDj +cEp +bZR +cFA +cGd +cLe +cHU +bVB +cIY +coT +cJD +cIL +ckX +coC +cJY +cKg +aaf +aaf +cLU +cLU +cLU +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(105,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +abh +abh +abB +abh +abh +acp +ahw +ajm +cuS +acp +acp +aey +aed +aeT +agn +aha +ahr +aiv +aia +akb +alR +akj +akJ +alJ +ahX +alQ +ajq +aoB +aoz +aqg +aqU +asW +asW +asW +asW +aOZ +aQE +aOZ +atg +axM +ayL +azB +aEm +aCT +aCT +aEm +aCT +aEm +aNN +aPx +auk +aNJ +aPu +eEV +auk +klA +mwu +aXu +aYM +baJ +bcf +bdZ +bfs +bgR +bfB +bhf +bkG +bmG +bmG +aKP +bmG +bmG +buZ +bxk +byI +bxk +bBy +bCT +bBy +btG +bGr +bJl +fKS +btC +bOL +bQj +bSl +bRX +bIW +bWI +bQB +aVv +bXd +cab +cbz +ccI +aXU +bZV +chn +cix +ceh +aZU +cmB +bKG +cjw +bSt +cju +cjw +cpW +cjJ +ckV +clX +cow +coA +cpp +cpq +cpu +bwE +cDu +cDW +cEo +bZQ +cDW +cDW +cGt +cmc +cmo +uGq +cmr +cmc +cGt +cGt +cGt +cGt +cGt +cLU +aaf +aaI +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(106,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +cLU +cLU +abh +abv +acE +adM +abh +acA +add +adz +add +cuU +acp +adR +aed +aeU +agu +ahg +ahE +aiy +aiy +akk +alY +aki +akX +alO +amk +anf +aju +ajC +aoG +apr +aqX +ata +auu +awh +asW +aQa +aQH +bAZ +atg +axM +ayL +azG +azS +aAP +aCW +aFJ +aIH +azS +ayL +aKx +axB +aNL +aPv +eEV +auk +vKw +sfM +aXl +aYS +baN +bcj +bfo +bft +bgS +biu +bjL +bkJ +blN +bnE +bpI +brI +btl +bvd +bwK +bym +bqF +bqH +bwK +bEB +byp +bHR +bJp +fKS +btC +bON +bPf +bPf +bRY +bPf +bPf +bVW +aVv +cfT +cae +cbC +kvT +bno +aYr +chq +ciI +aYr +aZU +cmE +cnG +bRf +bYH +cnA +coE +bjV +cns +cny +bql +bql +cmu +bql +bql +coB +bsy +cDk +cDk +cDk +cDk +cDk +cDk +cGt +apm +cIC +cIZ +cJs +cHb +cIQ +cLI +bIM +cnE +cGt +cLU +cLU +aaI +cLU +cLU +crP +aap +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(107,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +aaA +cLU +cLU +abh +abg +acv +adw +abh +ags +add +acH +add +cuT +acp +aaT +aaT +aaT +aaT +aaT +adD +aib +aeJ +aiz +aeF +akm +akJ +alN +ahX +ane +ajs +ajz +aoz +aqh +aqW +asY +aut +avt +asW +aPc +aQF +bAY +atg +axM +ayL +azF +aAO +aCc +ayL +aEo +aFI +aLH +ayL +aKw +aJe +aQN +jHW +aQN +aUp +aUp +aUp +aXk +aYN +baL +bcn +bdZ +bfu +bgv +bjM +bly +bdY +bmG +bmG +bmG +bmG +bmG +bvw +bvw +bvw +bvw +bvw +bvw +bvw +btG +bHQ +bJn +bKR +btC +bOM +bPg +aWB +bRZ +bLa +bPf +bQE +aVv +bYL +cad +cbB +cbY +bno +cfO +chp +ciH +cjT +cgo +cmC +cnG +coG +bVY +cnz +coD +bjV +cil +cvy +bql +cyU +cmt +cot +bql +bTW +cCq +cDk +cfj +cEF +cac +bKx +apl +cGt +cfB +cfz +cHD +cpX +cHb +cHb +cJo +bIM +bIM +cmc +cLU +cLU +aaI +cLU +cLU +crP +cLU +cLU +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ngU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(108,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +cLU +aaB +cLU +cLU +abh +aby +acI +aeh +abh +aht +add +ady +add +adC +acp +aeM +afg +afF +cuX +adD +ahu +ain +aiK +ain +adD +akl +akJ +akF +amm +apw +aoF +ajG +alx +amw +amO +atg +avj +awl +atg +auU +bjr +bBa +atg +axM +ayL +azy +azy +azy +ayL +asC +azy +atF +ayL +aKw +auk +aNJ +aPw +eEV +azo +aUb +aVO +aXm +aYU +baR +aUp +bdY +bdY +bdY +bdY +bdY +bdY +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +bAh +bCK +bCO +bBP +btG +bHT +bJl +bKY +btC +bBr +bPh +aYg +bsV +bND +bUB +bTb +aVv +bYP +cag +cbE +bVq +bno +cfO +chs +ciH +cjV +ciH +cmB +bMH +cjw +bYN +crf +coH +cpY +cio +clx +bql +cla +cnw +cov +bql +bUl +bVw +bYM +bZn +bZD +cbj +cGi +cHm +cGt +cId +cIG +cHF +cHZ +cHb +cHb +cHb +cHb +cHb +cGt +cLU +cLU +csM +cLU +cLU +crP +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(109,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +abh +abx +acF +aef +abh +agt +add +ady +add +adA +acp +aeL +aeM +afE +cuV +adx +cuZ +ain +ain +ajj +alZ +akl +akY +agD +amd +apq +ajv +aoL +apE +aqj +aqY +ate +avh +awk +atg +aQn +aUd +aQn +atg +axM +ayL +atN +azT +aCf +ayL +aCm +azy +aLJ +ayL +auk +auk +aEV +aPw +eEV +azb +aUl +aVN +aVR +aXO +aUp +aUp +beb +beb +beb +beb +bhk +beb +beb +beb +beb +aPb +aUk +aYc +bxr +bxr +bAh +bCI +bCV +bGC +btG +bHS +bJl +bKX +btC +bAd +bPf +csb +bSb +bNC +bPf +bQJ +aVv +bYO +caf +bUa +ccO +bno +cfP +chr +ciJ +cjU +cle +cmF +bKG +coG +cqa +cre +csn +bjV +cuo +cvA +bql +ckZ +cmv +cyV +bql +bUh +bUC +cDl +bZh +bZC +cai +cGf +cHl +cLf +cIb +cID +cHb +cHY +cHb +cHb +cHb +cHb +cHb +cGt +aaf +crP +crP +aaf +crP +csM +aaf +crP +crP +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(110,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +cLU +cLU +cLU +cLU +cLU +abh +abA +adc +afI +acg +acK +acK +adG +acK +ael +aes +aeO +afi +afH +aeO +agX +cva +aih +aiL +cvh +ajT +aks +alb +anA +akr +amp +amp +amp +apH +aqk +ara +atw +avl +awu +atg +aQr +byw +bBc +atg +axM +ayL +ayL +ayL +ayL +ayL +aFK +azy +azy +aFI +aDT +aQI +aNF +aPy +aQK +aLO +aAJ +aVR +aVR +aYW +aUp +aaf +beb +byl +bmI +biw +bkK +blz +bmI +boX +beb +bob +buG +bwn +bpM +bxr +bzM +bBE +bCX +bEC +bGw +bHW +bJs +bLb +btC +bNE +bPn +bQK +bSb +bTw +bSF +bTi +aVv +aWV +cam +bYI +aWV +bnp +ccE +chu +ciH +cjW +clf +ciC +cnG +bRv +cpx +cpx +cpz +bjV +cur +cvC +bqL +brC +brF +bsq +bql +bUp +bXH +ckE +cDJ +cDJ +cbA +cDJ +cDJ +cGt +awa +cIN +cHb +cHY +cJF +cJU +cKu +cKu +cKu +cGt +aaf +aat +aaI +aaf +aat +cts +aaf +aat +crP +aaf +aat +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(111,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abc +cLU +cLU +aac +cLU +cLU +abh +abh +abh +abh +abh +acJ +add +adF +add +aek +acp +aeN +afh +afG +cuY +adx +ahv +ain +ain +cvf +alZ +akn +ala +anA +amn +amp +amp +amp +amp +aoP +aqZ +arA +arA +arA +arA +arA +arA +arA +arA +azn +ayL +axN +aAr +aAr +ayL +ayL +ayL +ayL +ayL +aPE +aLM +aLM +aPu +aNR +azb +aAu +aVP +aVP +aYV +aUp +aaf +beb +bgU +bgx +bhQ +bkn +blA +blR +bFo +bpK +bsB +btL +bvH +rwB +bxr +bFv +bBC +bAh +bAh +btG +bHU +bJr +bKZ +btC +bNF +bNF +bNF +bSc +bNF +bNF +bNF +bNF +bYS +cah +cbF +ccR +cez +cbF +cht +cbF +cbF +cbF +uKl +cnJ +bjV +bLn +bLn +bjV +bjV +cdJ +cvy +cwm +cwm +cyv +cyv +bsy +bUm +bUC +bxN +cEd +cEI +cbt +cGk +cqL +bAP +cIe +cIJ +cHb +cHY +coF +cGt +cmM +cmM +cmM +cGt +aaf +crP +aaI +aaf +crP +crP +aaf +crP +crP +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(112,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abh +acp +adg +adH +adN +acp +acp +aei +aeY +afG +agx +adT +ahC +aik +ain +aiU +adT +akn +ald +anz +anj +anj +anj +aoQ +anj +aql +arc +arO +atb +atj +atA +auw +avv +awz +axf +axQ +ayv +azU +azU +azU +azU +azU +azU +aHb +aQI +aNF +aLM +aLM +aPA +eEV +azb +aXQ +aVU +aVU +aYY +aUp +aap +beb +bfv +bhS +biy +biy +bmH +bmK +bow +beb +bom +btm +bvf +btm +bxr +bys +bBG +bEr +cLU +btG +bHX +bJu +dNC +bJo +bLf +bMq +bQM +bSe +bTp +bNJ +bPp +bNJ +lyt +cao +bYV +ccU +bYV +bYV +chx +bYV +bYV +clh +cmI +cnF +vno +vno +vno +css +ctu +cuo +cvy +coK +coK +coK +coK +sYh +bUh +bUC +bxN +ckQ +cEL +ccf +cGn +cpE +bAP +cGV +cHu +cJd +cJt +cJJ +cLE +cKw +cLh +cLh +cGt +cKx +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(113,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +abw +acp +acp +adf +adf +adf +acp +acp +aeF +aeP +afr +aeF +aeF +ahz +aii +aiM +aeF +aeF +akt +alc +anA +amn +amp +anM +aoP +amp +aoP +arb +any +auv +ath +atz +auv +auv +auv +auv +axP +ayu +ayu +ayu +ayu +ayu +ayu +amr +aGZ +cbl +aKA +aKA +aKA +aPz +eEV +azE +ari +auR +avS +avU +aUp +aap +beb +bgW +aoi +bjY +bjc +bjO +bnJ +box +bru +bsm +btN +bve +bwQ +byo +bzP +bBF +bEr +cLU +btG +ixD +bJt +fKS +qJj +jFq +htC +bQL +bSd +bTj +bMu +bPo +bUq +dQa +can +bYU +ccT +bYU +bYU +chv +ciK +cjX +ceZ +cmH +cnC +coJ +cqe +cqe +csr +ctt +cus +cvD +cwn +cxu +cxu +cxu +cAe +bUy +bYl +cDw +cEe +bZF +cbM +cGm +cqN +bBb +cGU +cHt +cJb +cIa +cJH +cmz +cKv +cnh +cLw +crN +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(114,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +pWa +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +aap +aaf +cLU +cLU +abD +acN +adk +adk +adk +aem +aeu +aej +afj +afM +agy +ahR +ahF +adh +aiN +ajn +aml +akv +alg +aos +amv +anl +anN +aoR +anl +aqn +ard +arP +atG +atk +atG +aux +avw +awA +avI +axR +ayw +ayw +aAQ +aCg +ayw +ayw +ayw +aHb +aLQ +aKF +aLM +aLM +aPB +eEV +azb +aYJ +aVP +aVP +aZa +bcD +bcl +bec +bgX +bfz +biy +biy +blD +bmK +boy +beb +bot +btm +bvg +bvi +bxr +bzR +bBI +bEr +cLU +btG +ixD +bJw +bLd +bJq +bPq +bMr +bQN +bSf +bTq +bNK +bPq +bUr +eut +cas +bYX +ccW +bYX +bYX +chz +bYX +chz +clj +cmK +cnI +coL +cqf +cri +cst +cst +cuu +cvE +cwo +hoh +cyx +hoh +sYh +cuo +bUC +bxN +clu +cEN +cch +cGn +cpE +bAP +cGX +cHu +cJh +cJu +cJM +cLF +cKB +cLi +cLx +cGt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(115,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +abs +acL +adh +adh +adh +adh +aet +afO +afn +afK +agz +agY +ahD +adh +adh +ajo +acq +aku +ale +agW +ami +ajc +ami +ami +aqH +aqm +ang +arA +arA +arE +arE +arE +arE +arE +arE +azn +arE +arE +arE +arE +arE +arE +arE +arE +arE +aKE +aLM +aLM +aPu +aNR +azb +aAX +aVU +aVU +aYZ +aUp +aaf +beb +bfv +bgy +bgy +bgx +blA +blT +bGf +bnj +hDm +btL +bvN +bxo +bxr +bIQ +bBH +bAj +bAj +btG +bwS +bJv +bLc +btC +bNF +bNF +bNF +bNF +bWV +bNF +bNF +bNF +bYW +cap +cbG +ccV +ceA +cfR +chy +ced +cjY +cli +cmJ +cnM +bkA +bkA +bkA +bnd +bnd +cut +mKS +bnd +bnd +bkA +bkA +bkA +cBl +bUC +bxN +cnk +cEM +ccg +cGo +oAO +bAP +cGW +cHu +cHb +cHY +cJL +cGt +cmM +cmM +cmM +cGt +aaf +crP +aaI +aaf +crP +crP +aaf +crP +crP +aaf +aaI +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(116,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +aaf +aaG +aaG +aaG +aaG +aaG +abq +abO +acP +adn +adn +adn +adn +aez +aeZ +aft +afN +agL +agY +ahD +adh +adh +ajx +ajV +aif +ali +ahk +ams +anm +amC +aok +apI +aqp +arh +arp +asZ +aqf +atB +atB +atB +atB +atB +avp +aAi +aAi +aAi +aJC +aAi +aAi +aFQ +ayi +aHh +aNZ +aLQ +aKF +aPu +eEV +aLO +aAZ +aVR +aVR +aZd +aUp +aaf +beb +bzi +bhT +bge +bkM +biD +bjK +bHl +beb +bpc +buN +bwx +brj +bxr +bzS +bBK +bCZ +bED +bGx +bIb +bJx +qJj +btC +bNM +bPs +bQP +bPt +bTC +bSU +bSU +bSU +aWT +aWT +cbH +ccX +aWT +aWT +bSU +ciq +cka +clm +baI +cnO +coN +coR +crj +csv +boW +cuw +cvF +cwp +cfi +cyy +cyZ +bkA +cdJ +bYF +ckE +cDJ +cDJ +cDJ +cDJ +cDJ +cGt +cLp +cHu +cHb +cHY +cJP +cKa +cKE +cKE +cLz +cGt +aaf +aat +aaI +aaf +aat +crP +aaf +aat +crP +aaf +aat +aaI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(117,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aap +cLU +cLU +aaG +aaz +aaF +aaR +abo +abC +ack +acO +adm +adm +adP +aen +aev +aeX +afp +afK +agH +agY +ahD +aen +adh +ajt +ajU +akw +alh +ahk +amq +amP +anT +aoh +anO +apO +aqv +aro +asZ +asU +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aCu +aDe +aHc +aCu +auk +auk +dKq +aPu +eEV +azb +beh +aVN +aVR +aXR +aUp +aUp +beb +beb +beb +beb +bje +beb +beb +beb +beb +aPb +aXc +aYc +bxr +bxr +bAj +bDb +bCY +bGE +btG +bHZ +bJl +bLe +btC +bNL +bPr +bQO +bPt +bTC +bSU +bUX +bXc +xrP +xrP +xrP +cdy +ceB +cgm +bSU +ciM +cjZ +clk +cmL +cnO +coM +coR +coR +csu +boJ +cuv +coR +coR +coR +coR +cyY +bkA +cBm +bUC +cDr +bVu +bWX +bYz +cbK +cor +cGt +bhR +chd +cHD +cJv +cJO +cJV +cKC +cKu +cLy +cGt +aaf +crP +aaI +aaf +crP +crP +aaf +crP +crP +aaf +aaI +aaI +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(118,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaD +aaL +aaU +abj +abF +abS +acR +adp +adp +adU +adp +aeB +adp +adp +agd +agO +adp +adp +adp +adp +ajJ +aml +akz +ala +ahk +amB +apI +anV +apI +aoY +apP +aqG +arr +asZ +asU +aoH +auz +avg +awF +axi +axS +cfS +azV +awF +aAb +aCY +aCu +aDv +aHg +aCu +cLU +auk +aNJ +aPC +aQP +azH +biz +aVV +aVR +aZe +bcb +aUp +bed +bed +bed +bed +bed +bed +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +bAj +bKC +bCW +bFc +btG +ixD +bJl +qJj +btC +bNO +bPv +bQR +bPt +bTC +bSU +aXC +bWJ +bYQ +bYQ +bWJ +cdQ +ceE +cfW +bSU +ciO +ckb +cln +cmL +cnO +coP +coR +coR +csz +bCF +cuv +cvH +coR +coR +cyz +czb +bkA +cBo +bYK +cDx +bWT +bWZ +cck +cFT +cGr +cLg +cHb +cHu +cHL +cJx +cIF +cKd +cJx +cIF +cLB +cGt +cLU +aap +aaI +cLU +cLU +aaf +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(119,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaC +aaL +aaC +aba +abE +abR +acQ +ado +adI +adS +aeA +aeH +aeo +afu +agG +agM +ahc +ahG +ail +aiO +ajI +aml +ajS +ala +ahk +amt +anp +anp +anp +anp +anp +aqy +arq +asZ +asV +aoH +auy +avx +awE +axh +awj +ayc +axh +aAR +axh +aCX +aCu +aDu +aHf +aCu +aaf +aMb +aQN +jHW +hDl +aUp +aUp +aUp +aXt +aYN +baQ +aZn +bed +bfC +bgz +biA +bjT +bed +bed +bed +bed +bed +bed +bed +bed +byN +byN +byN +byN +byN +btG +bIc +bJy +qJj +btC +bNN +bPu +bQQ +bPt +bTC +bSU +aXD +bXu +aYl +aZm +cdY +cdF +ceD +cfV +bSU +ciN +ckb +cln +cjs +cnO +coO +coR +crl +csw +bCz +cux +cvG +cvG +cxx +coR +cmb +bkA +cBn +bUC +bZa +bVv +bWW +bZa +aVT +cHA +cGt +cfC +cHw +cun +cuq +cuJ +cuI +cuH +cJZ +cLA +cmc +cLU +cLU +aaI +cLU +cLU +crP +cLU +cLU +crP +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(120,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaD +aaL +aaU +abj +abI +acc +acw +acw +adL +adZ +aeC +aaa +agg +agg +adL +act +aea +aec +aew +aff +afR +agv +akA +alj +ahk +amD +ann +anW +aoK +apd +apR +aqI +arQ +asZ +auK +aoH +auA +avB +awY +axj +cfS +axU +auA +aAh +aCk +auA +aCu +aFR +aHi +aCu +aJl +aJl +xhz +aPD +aQQ +azK +klA +mwu +aXv +aZg +baT +bcr +bdG +bfD +bhb +biB +bjU +aSf +bmO +bkL +bqz +bsp +btQ +bwC +aXz +byN +bzU +bBM +bDd +bEF +btG +ixD +bJp +bLg +bMv +bNR +bPA +bQW +bPt +bTC +bSU +aXF +bXu +aYF +aZp +cdZ +cek +ceG +cfb +bSU +ciO +ckb +cln +clr +cnL +coR +coR +coR +coR +coR +cuv +coR +coR +coR +coR +czc +bkA +cBn +bUC +cDr +cDr +cDr +cDr +cDr +cDr +cGt +bhR +cox +cHM +bBo +cIH +cKf +cuG +cIH +ctB +cGt +cLU +cLU +aaq +cLU +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(121,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +cLU +cLU +cLU +aaG +aaC +aaL +aaC +aba +abH +abT +acr +acZ +adK +adY +adK +aeI +afv +agf +ago +agv +ahd +adu +ahO +aiR +ajK +agv +agK +aad +ako +ako +ako +ako +ako +ako +ako +ako +anG +asZ +asV +atE +atE +atE +axa +atE +atE +atE +atE +avW +atE +atE +aCu +aDe +axO +aCu +gsd +dvY +xhz +aPD +aQQ +azK +klA +mwu +blu +aZf +baS +bcf +bed +bfE +bhc +biC +bnf +aUo +bnw +boC +boC +aMi +btR +bvQ +bwR +byN +bkO +bBO +bDc +bEE +btG +ixD +bJl +qJj +btC +bFF +bPz +bQV +bUA +bTD +bSU +aYd +bWJ +cbk +cbk +bWJ +cee +ceF +cfX +bSU +ciP +ckc +clp +cmN +cnK +coQ +cqg +crm +coQ +bXf +ctC +cuy +cvO +cxy +cyA +cgj +bkA +cBp +cCx +czA +cLU +cLU +aaf +aap +cLU +cGt +cGt +cGt +cGt +ctq +cLm +cLD +ctq +cLm +cty +ctK +cLU +cLU +aaI +ctg +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(122,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abc +cLU +cLU +cLU +aaG +aaD +aaL +aaU +abj +abF +ach +acU +adq +adq +aep +aep +afb +afw +adq +agE +acM +ahe +ahJ +aip +ahe +ajQ +agJ +akC +alk +alT +amF +ano +aof +api +apJ +apT +arg +arI +atI +auM +atD +auC +avD +awL +axm +axV +ayz +azW +aAT +azW +aCZ +aEr +aFT +aKG +aIS +aKK +aMa +aNT +aPF +aQM +aJi +klA +aUp +aUp +aUp +baW +aUp +aUp +bfF +beC +bgQ +bnr +aSD +bou +bHJ +bqA +bsp +btS +aWH +aXB +byN +bzQ +bBO +wTp +bEH +btG +bHM +bHO +bHP +btC +bNX +bPB +bQX +bPt +bTE +bSU +bVE +bWR +bYT +cal +ceb +cem +ceJ +cga +bSU +ciQ +cke +clr +cmP +cnR +blp +blp +blp +blp +blp +cwO +cwW +blp +blp +blp +bkA +bkA +cBq +cdW +czA +aaf +cLU +cLU +ccp +cHB +cHB +cHB +ccp +cGt +crU +csL +cKk +ctr +ctx +ctH +ctM +cub +aaf +apc +aaf +aaf +crP +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(123,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaE +aaM +aaV +aba +abJ +acd +acS +adq +adV +aeb +aeb +afa +afw +adq +agp +acC +ahe +ahI +air +aiQ +ajM +agv +akB +akT +alD +amE +akG +aoe +alw +aoZ +apS +aqM +anG +apy +aqi +atE +auB +bwA +awK +axl +axT +ayx +axT +aAS +avC +avC +aEq +aFS +aHk +aIP +aKI +aLY +aNS +aPD +aQQ +azK +cLU +aaf +aUp +baE +baV +bcI +aUp +blt +aOO +aQw +bjW +aVe +aWe +aWu +brv +bsp +bhF +bsp +bsp +byN +bzV +bBN +bDe +bEG +btG +ixD +bJl +qJj +btC +bNW +bPt +bPt +bPt +bUL +bSU +bSU +bSU +bYY +bSU +bSU +ccZ +bSU +bSU +bSU +ciq +ckd +clr +cmO +cnR +bYG +sBp +bSp +asT +ati +bTo +ssg +cjB +cpe +blp +bZH +czD +cBW +cCz +byA +byA +byA +clS +rQB +cKX +gwY +mNK +rQB +cGt +cqO +csI +cGt +cGt +csI +csI +cGt +ctP +aaf +apc +cLU +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(124,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaG +aaG +aaO +aba +aay +abL +acd +acW +adq +adV +aeb +aeD +afc +afx +agi +agF +agP +ahf +ahN +ais +ajf +rCg +agv +akE +alm +alF +aeK +anq +amG +alt +apL +aqq +arl +anG +asp +aoH +aoj +aoj +aoj +aoj +axg +axT +ayP +axT +aAV +atE +atE +atE +aFV +atE +aJl +aJl +aJl +aNW +aPD +aQQ +azK +cLU +cLU +aUp +aCH +bcd +aDQ +aUp +bfH +beE +bgZ +bjW +biC +biC +biC +bqC +bsp +btp +bvh +bah +byN +bBQ +bBQ +bDg +cQX +aJi +bIe +bJC +bLj +aJl +bNY +bPt +bsH +bwI +bPx +bUH +caq +bQF +bZb +caq +bNp +cdb +ceM +chA +cii +cim +cjr +cjS +cmO +cnR +bXg +drB +ssg +ssg +cmx +cuA +ssg +ssg +atm +blp +cBz +cBz +cBW +cqw +cqG +crd +crq +byA +rQB +crM +hsk +cQw +rQB +aaf +csq +csR +ctp +csR +csR +ctp +csR +cud +cLU +apc +cLU +cLU +cbO +cLU +cLU +csM +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(125,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaG +aaN +aaW +abk +abK +acd +acV +adq +adV +aeb +aeb +afa +afw +adq +agE +acT +ahe +ahL +aiq +aiQ +ajO +agv +ajL +akG +akU +ahA +alD +alD +aod +apf +aqo +arj +anG +asp +aoH +atH +atH +atH +aoj +axn +axW +ayH +axT +aAU +aBj +aDa +aEs +aFU +aHl +aIT +aKL +aJl +aFE +aPD +aQQ +azK +aaf +cLU +aJi +baG +baX +bdE +aJi +bfI +bhg +biG +bjX +blJ +biG +biG +bqD +bed +bed +bed +bed +byN +bzY +gpG +bDg +yeJ +aJi +bId +bJA +bLi +aJl +bPx +bLm +bPx +bsI +bPx +bUI +caq +bXe +bYZ +caq +bNa +cda +ceL +chg +chW +ciA +cmR +ciA +ciA +cgs +bVQ +crK +crJ +csy +csy +cuz +bUd +bXr +cxD +blp +ckv +cDg +cDR +cDY +cGA +cEr +cbJ +crH +cKO +cHE +ffg +lFM +rQB +aaf +csl +csQ +csQ +cIm +cIm +csQ +cIm +csQ +cLU +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(126,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaX +aaQ +aaZ +aaZ +abP +aab +acY +adt +adX +aex +aeG +afe +afS +agk +agI +adb +ahe +ahQ +ait +ahe +akg +agv +akD +alC +alG +ahA +alD +alD +aoX +alK +amz +arm +anG +asp +aoH +atL +auE +avE +aoj +axq +ash +jpR +axT +aAY +aBj +aDc +aEt +aFX +aHm +aIU +aIU +aJl +aNQ +aPD +aQQ +azK +aaf +cLU +azK +aZk +baZ +bcu +aJi +bfJ +bhh +bhV +aRG +aVi +aWh +aWw +bpN +aNU +bhy +bhP +bhy +btb +bAa +bBS +bDh +bEI +aJi +bIg +bJD +bcv +bOb +brb +brb +bQT +bOY +bTF +bUJ +caq +bXe +bZe +caq +caq +cdd +cdf +caq +caq +ciA +ckh +cll +cib +cgs +cpn +jko +fCE +fCE +fCE +ohn +ohn +cwx +nPR +blp +czO +czE +cBX +cCC +byF +byF +byF +byA +rQB +cLc +cLk +cLu +rQB +aaf +cIl +cGR +cGR +csX +csX +cGR +csX +cGR +cLU +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +ctg +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(127,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaH +aaP +aaY +abl +abM +acl +acX +adr +adW +aeq +aeE +afd +afz +agj +agZ +agv +ahh +ahH +aiP +aiS +ajP +agv +aky +alw +alU +alE +anP +aog +aoU +apN +aqE +aqw +anG +asp +aqA +atK +auD +auD +awM +axp +atp +auh +axW +aAW +aBj +aDb +aEt +aBj +aBj +aBj +aIU +aJl +aNY +aPD +aQQ +azK +azK +azK +azK +aZj +baY +bct +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +aJi +bBR +aJi +aJi +aJi +bIf +bJA +bKW +aJl +bNU +bQp +bNU +bNU +bNU +bUK +caq +bXh +bZd +caq +bxl +cdc +cgS +cgb +chD +ciA +ckg +clv +cmS +cgs +cpn +cpn +bSK +cCf +cfq +cuB +cuB +cww +cww +blp +czN +cAN +cBY +cFC +byF +aaf +cLU +cKH +rQB +cpF +cLj +cLt +bBe +aaf +cIl +cGR +cGR +csX +csX +cGR +csX +cGR +cLU +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(128,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +aaG +aaG +aaG +aaG +abG +aco +aco +adJ +aco +aco +aco +aco +age +aco +agN +agv +agv +agv +agv +agv +agv +agv +anG +anG +anG +anG +anG +anG +anG +anG +asf +anG +anG +asq +aoH +atR +auG +avG +awP +axq +atr +aua +azY +aBc +aBj +aDd +aEx +aBj +aHp +aIY +aIU +aJl +aOb +aPD +sWj +cYR +cYR +cYR +cYR +aSb +bbb +bcz +bAb +bhY +bgB +bgn +bjo +bGo +bAb +bnH +bpP +brK +btq +buW +bwW +byq +bAb +bAb +bDk +bwW +bwW +sDc +bJH +gAA +aKH +bNU +bPx +bPx +bQH +bNU +bUK +caq +caq +caq +caq +caq +caq +caq +caq +caq +ciA +ciA +clw +coy +cgs +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cpj +cBD +byA +byA +byA +byA +cLU +cLU +cLU +rQB +rQB +bBe +cKX +ccQ +aaf +cIl +cGR +cGR +csX +csX +cGR +csX +cGR +cLU +apc +cLU +cLU +crP +cLU +cLU +abc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(129,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +cLU +abb +abn +abN +acs +acs +acD +adB +adB +adB +adB +aeQ +afk +afJ +agw +agT +ahx +ahx +ahx +ahx +ahx +akp +agA +agV +adB +ans +aol +apg +apB +aps +are +arJ +asv +aoH +atM +auF +avF +awO +axr +axZ +ayT +ayn +aBj +aBj +aBj +aEw +aBj +aBj +aBj +aKM +aJl +aOa +aPG +aQS +aQS +aQS +aQS +aQS +aQS +bba +bcv +nYi +bgT +biM +bhW +bzt +bgT +pbo +bnG +aQS +aQS +bba +bcv +bcv +beT +aQS +aQS +bDj +aQS +aQS +aQS +bJG +gAA +aLV +bNU +bPx +bPx +bSk +bNU +bkx +bTF +bIK +bKi +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bQS +bRR +bSg +crv +bTF +bTF +bTF +ctv +cuC +bPx +bLm +bLm +bLm +cBA +bLm +cis +bQH +cea +cea +cea +cea +cea +clW +aaf +aaf +aaf +aIo +csA +csX +csX +csX +csX +csX +csX +csX +aaf +apc +aaf +aaf +crP +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(130,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +cLU +cLU +cLU +abb +abp +abp +abp +abb +adj +agm +agm +aee +aeR +afl +afA +agl +afs +agm +afX +afY +avA +abb +abb +alf +abb +anQ +anQ +and +aoC +anQ +aoH +alu +alu +alu +asF +aoH +atV +auH +avz +aoj +axu +axT +ayx +aAa +aBj +aCo +aCo +aEt +aBj +aHp +aIZ +aIU +aJl +aOc +aPH +aLY +aLY +aUj +aLY +aLY +aLY +aZc +aLY +aLY +biI +aLY +bia +bjn +biI +aLY +aLY +aLY +aLY +btr +bvj +aLY +beV +aLY +aLY +bDl +bfG +bfG +qHi +bvj +sfO +bMw +bNU +bCv +bLW +bQU +bNU +bNU +bWa +bDt +bPx +bQH +cbI +cbI +cbI +cbI +cbI +ciG +ciG +ciG +ciG +ciG +ciG +cir +bQH +cis +ctw +cuD +cfc +cvM +cvM +cvM +cCA +cAP +cBZ +cCR +cbs +bPx +bPx +bPx +cis +bzX +cLU +cGQ +cHy +cHP +cIn +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +apc +apc +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(131,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abb +abb +adO +abb +abb +abb +abb +abb +agq +abb +abb +abp +abp +abp +abb +ajk +akZ +aln +amx +amH +anu +aon +anQ +apa +apF +apF +apF +asE +aoH +atT +atT +atT +aoj +axt +avC +ayU +azX +aBd +aCl +aDf +aEy +aBj +aBj +aBj +aIU +aJl +aJl +aGJ +aJl +aJl +aPr +aBu +aJl +aBu +aJl +aBu +aJl +aJl +biO +bia +bkP +aJl +aJl +aGO +aJl +aGO +aJl +aJl +aJl +aJl +aJl +aJl +aJl +bdA +bdA +aJl +aJl +aJl +aJl +bDt +bDt +bDt +bDt +bDt +bDt +bVV +bDt +cbn +bDt +cbI +cde +ceO +cgf +cbI +ciR +chP +cly +cmU +cnQ +ciG +ciG +ciG +ciG +ciG +cwX +cvN +cvN +cvN +cvN +cvN +cvN +cvN +cbq +cDB +bPx +bLm +cKI +ckG +bzX +cLU +cHc +cHy +cHP +cIo +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(132,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aap +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +abb +adv +agm +aaS +abb +cLU +abb +afL +aqL +agm +abb +cLU +aaf +aaf +abb +ajE +afV +agm +anQ +amI +aoc +anR +anQ +acm +aqt +aXP +asa +asE +aoH +atP +atP +atP +atP +aoE +ayb +bau +aoE +aBj +aoO +aoO +aEB +aBj +aHr +aJa +aIU +aBj +aOq +aPI +aIe +aUf +aUD +aSS +aYy +aSS +aUU +aSS +bef +aZz +bgE +bic +bjq +aZz +blV +lbI +bpS +bnL +bts +aLS +bxs +bxt +bAe +bvv +bDt +mue +bGy +bDt +bJJ +cpy +bMx +bDt +biE +bQY +biX +bDt +aUM +bWc +bXl +bZj +cau +cbI +cdg +ceP +cgd +aZS +ciS +ciS +ciS +ciS +cnS +cpc +cqi +cro +csD +ciG +cuF +cvN +bXv +cxA +bYJ +cyD +caV +cvN +cCT +cDC +bSk +bNU +bzX +bzX +bNU +cLU +cGQ +cHy +cHP +cIn +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +csM +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(133,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cbO +crP +crP +crP +crP +crP +crP +crP +crP +aaf +aaf +abb +aae +agm +acG +abb +aaf +aeS +aau +agr +aau +aeS +cLU +cLU +aaf +abb +abp +abp +abp +anQ +aiJ +aiJ +aiJ +anQ +apG +aqu +arD +asa +asG +asm +atO +auI +avJ +awQ +axw +axw +ayV +azZ +atP +aBj +aBj +aBj +aGn +aBj +aBj +aBj +aBj +aOe +aPI +aHT +aTX +aUE +aSP +aSP +aSS +aSP +aSS +beg +aZz +dxK +eNu +iYA +aZz +btu +bnK +bpQ +bnK +blU +aLS +bwX +byr +bAc +bBU +bDm +bEK +bEK +aRt +bsc +bEN +bLR +bDt +bEL +bEL +bEL +bTs +bUt +bWb +bXo +bZi +cat +cbI +ccL +ceP +cgd +aZS +uDW +ckj +clz +cmV +cmV +coS +cqh +crn +csC +ctD +cuF +cvN +bXs +cxz +bhO +czd +ciL +cCa +cCa +cCa +cCa +cCa +clT +aaf +aph +cLU +cHc +cHy +cHP +cIo +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +abc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(134,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +abb +ads +agm +adi +abb +cLU +aeS +agS +acn +agS +aeS +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +alu +apF +apF +apF +apF +asH +avb +atP +auO +avK +awS +axz +ayf +ayY +aAd +aBg +atP +aDm +aEP +aGo +aHH +aJr +jKq +aMj +aOk +aPI +aHT +aTX +aUF +aFY +aHa +aSS +aMn +aSS +kSt +aZz +dxK +bid +iYA +aZz +blX +bnO +bpZ +brN +btu +aLS +bxa +byr +bAg +bBU +bDv +bEN +bGA +bDt +cpw +bEP +bMz +bDt +bPD +bRa +bRa +bTx +bUx +bWe +cpN +bZk +bZO +cbI +cdi +ceP +cgd +aZS +ciV +ckl +clB +cmX +cnU +ciG +cqk +crr +csF +ciG +cgC +cvN +cwv +cxG +cxz +czg +cAj +cCb +cjk +cCb +cEu +crs +aaf +cLU +aph +cLU +cGQ +cHy +cHP +cIn +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(135,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +abb +abb +als +abb +abb +aaf +aeS +agS +agh +agS +aeS +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +aap +cLU +alu +azR +aqP +arw +arN +asH +aiu +atP +auJ +auJ +ayW +bDH +aye +ayX +aAc +aBe +atP +axY +aEQ +aGp +aGp +aGp +aKN +aMc +aOj +aPJ +aHT +aTX +aUF +aTk +aTk +aSS +aTk +aSS +bmQ +aZz +dxK +bid +bjs +aZz +blW +bnN +bpT +brM +btt +bwD +bwZ +byt +bAf +byt +bDn +bEM +bGz +bIh +bEL +bLp +bEL +bNZ +bEL +bQZ +bSm +bTu +bUw +bWd +bXp +bZk +caw +cbI +cdh +ceR +cgg +cbI +ciT +ckk +clA +cmW +cnT +ciG +cqj +crp +csE +ciG +cuE +cxF +cwu +cyD +cyF +cyD +cbe +cDF +cAV +cGM +cEt +crs +aaf +cLU +aph +cLU +cHc +cHy +cHP +cIo +cGR +cGR +csX +csX +cGR +csX +cGR +aaf +cLU +apc +cLU +crP +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(136,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aeS +agS +afP +agS +aeS +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +aap +aaf +aaf +aoH +aoH +aoH +aRU +aoH +anh +akq +atP +auX +auX +aBl +axA +ayg +ayY +aAc +aBi +atP +aya +aER +aDV +aFG +aHt +jKq +aKU +aOl +aPI +aHT +aTX +aUF +aSS +aSS +aSS +aSS +aSS +aSS +beW +bgF +bih +bjg +aZz +blY +bnQ +bpg +brO +boR +bvk +bxb +byu +bAk +bBX +aPV +bEP +bGF +bIi +bJL +bLx +bMA +bNZ +bEL +bEL +bSn +bDt +bUz +bWg +bXw +bZm +caz +cbI +cdk +ceS +cbI +cbI +ciX +bck +clD +ciG +ciG +ciG +ciG +crt +ciG +ciG +bTQ +cvN +cwz +cxH +cxz +czi +cbg +cCb +cjm +cCb +clL +crs +aaf +aaf +aph +cLU +cGQ +cHP +cHP +cIn +cGR +cGR +cGR +cGR +cGR +cGR +cGR +aaf +cLU +apc +apc +crP +cLU +aap +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(137,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +cLU +cLU +aeS +cLU +cLU +cLU +aeS +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aaf +cLU +cLU +aoH +aqJ +ars +aoH +asJ +asl +atP +auY +ayQ +aCa +axA +ayg +ayY +aAc +aBh +atP +jKq +aFZ +jKq +jKq +aJb +jKq +aKQ +aOl +aPI +aHT +aTX +aUF +aVS +aIL +aKB +aZr +aSS +bcG +aEe +dxK +big +bjt +aZz +bmY +aYe +buc +buc +buc +buc +bxC +bxC +bkc +bxC +bDy +bEO +bGD +bxC +bxC +bLt +bxC +cBI +bPE +bRb +bRb +bTJ +aUg +bWf +bXt +bZl +cay +bTJ +cdj +bTJ +cfY +cjp +ciW +ckm +clC +cmY +cmY +cjz +cql +cru +cfY +ciB +bTO +cvN +cwy +cyD +cyD +bZW +cAV +cCa +cCa +cCa +cCa +cCa +aaf +aaf +aph +aaf +cIO +cHy +cHy +cHy +cIn +cIO +cIn +cIO +cIn +cIO +cIn +aaf +cLU +cLU +apc +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(138,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aeS +cLU +cLU +cLU +aeS +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aap +aaf +adl +afC +apt +apv +apZ +aqK +aqB +atP +auZ +auX +aCa +axA +ayg +azc +aAf +aBm +aDy +avO +aET +aIn +aJB +aGs +aDp +aMp +aOm +aPK +aHT +aTX +aUG +aVX +aIN +aLa +aZE +bcM +bcO +beX +bgG +bij +bjy +aZz +bnl +bnS +bnS +brJ +btO +bvm +bxe +byx +bAm +bBZ +bDp +bER +bGI +bIk +bDp +bLz +bDp +bOc +bDp +bDp +bSo +bTz +bUE +bWi +bXz +bZp +caC +cbQ +cdm +ceU +cgl +chH +ciZ +cko +clF +cna +cna +cna +cna +crw +cuf +clM +bTO +cvN +bXB +clZ +ciE +bZX +cbh +bvs +cqx +cqH +crk +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cto +aaf +aaf +apc +aaI +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(139,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aac +cLU +cLU +cLU +cLU +aaf +aap +cLU +aoH +ajN +apx +aoH +auP +atl +atP +avd +avd +aZI +bDH +ayg +aza +aAe +aDt +atP +aVh +awg +bbX +ayt +aGs +aDp +aLv +aMZ +aQe +aRu +aSQ +aUH +aVW +aJj +aJj +aZA +aSS +bcN +bfQ +dxK +bii +bjw +aZz +blZ +bnR +bqb +bqb +btw +bvl +bxd +byv +bAl +bBY +bDo +bEQ +bGG +bIj +bJM +bLy +bMy +bOa +bPF +bDo +bEQ +bTy +bUD +bWh +bXy +bZo +caB +cbN +cdl +ceT +cgh +chF +ciY +ckn +clE +cmZ +cnW +coU +cqm +csg +cfY +ciD +bTO +cvN +cvN +cvN +cvN +cvN +cvN +cvN +coI +cLU +crg +crC +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +cbO +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +apc +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(140,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aoH +aoH +aoH +aoH +alu +alu +atP +ava +avQ +awU +axz +ayh +aze +atP +aoE +atP +aDs +aDs +aDs +aHL +avO +aME +aMy +aOw +aQf +aRv +aSR +aUI +aWa +aJs +aLb +aZK +bbj +bei +aZz +dxK +bii +bjz +bhM +bmf +bnU +bnX +bsv +bIU +bvo +bxC +aMm +bAo +bxC +aMm +bxC +bGJ +bIm +aSc +aSk +bxC +bOd +bxC +aSk +aSk +aTI +bUN +bWk +bXC +bTJ +bTJ +bTJ +cdo +bTJ +cfY +cfY +cjb +bcx +clH +ciU +ciU +ciU +ciU +cry +ciU +ciU +bTO +ckS +ciF +cKU +crG +cKW +cKZ +crG +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +apc +abc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(141,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +apc +aph +aph +aph +aph +aph +apc +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +aaf +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +atP +avm +avP +avP +avP +avP +azd +aAg +aBn +aCr +atP +aap +aDs +aHK +aFi +aDp +aMl +aNd +aDG +aRw +pLr +aUF +aWm +aSS +aSS +aSS +aSS +aOg +aZz +dxK +bii +iYA +blQ +bmb +bnU +bnX +brQ +bty +bvn +bxF +bat +bAn +bCa +bbd +bxF +bEz +bIl +aSa +bLA +bMC +bLC +bPG +bLC +bSq +aTH +bUF +bWj +bXA +bTJ +cax +cbR +cdn +cbR +chE +caE +cja +ckp +clG +cnb +cnY +ciU +cqn +crx +csG +ciU +bTR +bVx +cxv +chN +czf +cKV +cKY +cqr +cqA +aaf +aaf +aaf +aaf +aaf +crP +crP +crP +crP +crP +crP +crP +crP +crP +cto +cbO +crP +crP +crP +aaf +aaf +apc +crP +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(142,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aap +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +atP +avR +axG +axy +axG +axG +azf +atP +aBo +avf +atP +aap +aDs +aHK +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aST +aUv +aWd +aTX +aTX +aSS +aSS +aTk +aYT +dxK +bik +bjC +bkX +bmn +bnW +bnX +brT +btI +bvp +aLX +byB +bAq +byz +bDr +bxF +bGL +bIo +bxF +bLC +bLC +bOf +bPI +asL +bSi +bTJ +bSJ +bWk +bXE +bZq +caL +cbT +cdq +cbS +cgk +caE +cjd +ckr +clJ +cnd +cnZ +ciU +cqp +crA +csJ +ciU +bTO +crG +crG +crG +crG +crG +crG +crG +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +apc +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(143,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +atP +atP +aoE +aoE +aoE +ayb +axC +aoE +atP +aqr +aqz +atP +aap +aDs +aHK +aKZ +arT +aMr +aOn +aPM +aKZ +aFm +aFo +aGa +aJj +aJj +aMR +aSS +bej +aZz +dxK +bii +bdV +bkV +bmm +bnV +bnX +brS +asI +bvp +bxf +byz +bAp +byz +byz +bES +byz +bIn +bJO +bLB +bMD +bOe +bPH +bRc +bSr +bOd +bUE +bWl +bXD +bZs +caK +cbS +cdp +ceV +cgi +caE +mGM +ckq +clI +cnc +cnc +coV +cqo +crz +csH +ctE +bTO +crG +cLU +cLU +cLU +cLU +cLU +cLU +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aap +cLU +cLU +aaf +cts +cLU +cLU +cLU +cLU +cLU +cLU +apc +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(144,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anU +ydN +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHO +aLd +aKS +aMt +aGD +aMs +aKZ +aUn +aUx +aWm +aSS +aSS +aNa +aSS +beZ +aZz +dxK +bii +rkN +blQ +bmb +bnX +bnX +brP +btM +bvr +bxF +byC +bAt +bzW +bDs +bxF +bGN +bIr +aSa +bLD +bMF +bOh +bPJ +bRe +bWM +aTI +bUR +bWk +bXG +bTJ +caM +bSB +cdr +bSB +cjo +caE +cjc +cjc +cjc +cjc +coc +cph +cqq +crB +csK +ciU +bTO +crG +aaf +aaf +aaf +aaf +aaf +aaf +cqD +aaf +aaf +crP +crP +crP +cto +cbO +crP +crP +cto +aaf +cbO +crP +crP +crP +crP +crP +aaf +aaf +aaf +crP +aaI +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(145,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aKZ +aBf +aMs +aOo +aPN +aKZ +azL +aBq +aVZ +aBq +aBq +aBq +bcB +aBq +aZz +bgH +bii +bjD +bhM +bmw +bnX +bnX +btx +btK +bvq +bwk +aLT +bAr +bwk +aLT +bwk +bGM +bIp +aSd +aSp +bwk +bOg +bwk +aSp +aSp +aTI +bUQ +bWm +bXF +bTJ +caE +caE +caE +caE +caE +caE +cje +cia +clK +cne +coa +ciU +ciU +ciU +ciU +ciU +bTT +crG +cLU +cLU +cLU +cLU +cLU +cLU +cqB +bpO +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(146,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +cLU +cLU +cLU +cHK +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aKZ +azJ +aMs +aOo +aPP +aKZ +aGI +aUw +aWf +aUt +aUt +aUt +bbM +baM +aZz +dxK +bii +rkN +aZz +bmz +boj +bqd +bqd +btP +bvu +bxh +byE +bAv +bCd +bDz +bEW +bGP +bIu +bDz +bDz +bMB +bOj +bPL +bDz +bEW +bTG +bUT +bWq +bXJ +bZt +caF +cbP +cdt +bzT +ceX +caI +ciU +ciU +ciU +ciU +ciU +ciU +clM +bTa +bTh +bTh +bSM +crG +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(147,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aJd +aJF +aMu +aPQ +aPO +aQW +aSg +aUq +aVY +aXA +aXA +aXA +bbr +bfb +aZz +bRJ +bii +rkN +aZz +bnm +bof +bqc +brV +bwY +bvt +bxg +byD +bAu +bCc +bDw +bET +bGO +bIt +bJS +bIt +bMG +bOi +bPK +bIt +bSu +bTA +bUS +bWp +bXI +aWU +aZD +aZG +cds +cds +cds +cfZ +caI +bOD +bRK +bSa +bSa +bSa +bSa +bSM +crG +crG +crG +crG +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +crP +crP +crP +cto +crP +crP +crP +apc +apc +apc +apc +apc +apc +apc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(148,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +csT +aaf +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +abc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +glx +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aKZ +aXf +aKv +aXS +aTC +aWL +bcC +bfg +aZz +bfa +bim +rkN +aZz +bni +biW +bqe +bni +bni +bBW +bwk +byJ +bAx +bwk +aLT +bEY +bGR +aLT +bwk +aSA +bME +bOl +bwk +aSA +aSA +bTJ +bUV +bWs +bXL +aWU +aZF +cel +cdu +aZH +cgp +chJ +caI +bPj +cnX +chh +chh +cpi +cpi +crG +crG +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(149,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aob +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +atC +aHK +aGs +aKW +aKT +aOr +aQV +aQX +aKZ +aUs +aWg +aOp +aTB +bbe +bcA +bbi +aEi +bgJ +bil +rkN +aZz +bmA +bok +bok +brX +bnn +bwk +bwk +bqq +bAw +bwk +bbg +beA +bgm +bgD +bir +aSq +bMJ +bOk +bPM +mlI +bSv +bMK +bUU +bWr +bXK +caI +caI +caI +caI +caI +caI +caI +caI +bPd +clN +clN +clN +clN +clN +cfQ +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cqv +cfQ +cLU +aaf +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(150,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aap +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +ctg +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +atC +aHP +aJy +aLh +axD +aOt +aPS +aPS +aSh +aUu +aXE +aUt +aUt +aUt +sFU +bcs +aEi +cvk +bil +rkN +aZz +bmC +bon +bqg +brZ +btU +bvx +bxm +byL +bAy +bwk +bbo +beD +bGT +bhU +bis +aSq +bMM +bOn +bPP +yjW +bSx +bMK +bUP +bWt +bXN +bZv +caN +caN +caN +caN +cgr +ccP +cjh +bPl +clP +cfF +cjt +coX +cqu +cqv +clb +ceN +cuL +ctF +ccm +cxM +bpx +cuP +cmg +ctF +cCS +cCS +cnP +cEW +cqv +cLU +aaf +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(151,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aGs +aLf +aMF +aOs +aPR +aPR +aTa +aUt +aMw +aTs +aUy +aUt +arU +bfw +aZM +bRL +bil +bjv +aZz +bSy +bol +bqf +brY +btT +aLT +bkz +byK +bAx +bwk +bdb +bEZ +bGS +bio +biv +bDJ +bML +bOm +bPR +bPP +bSs +bMK +bUW +bWr +bXM +bZu +bZu +bZu +bZu +bZu +cgq +chK +cjg +bPk +clO +bVJ +cod +coW +cbm +bYD +ceo +ceC +cgZ +caA +btF +ccu +bLJ +ceC +cqd +ccl +cqE +cqP +chw +cEU +cqv +cLU +aaf +cLU +cLU +cLU +cLU +csM +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(152,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +aDs +aHK +aGs +aLf +aAz +aOs +aPR +aRa +azM +aZl +aWi +aUJ +iUa +aUt +aUt +aUt +bbK +bff +bin +bjN +aZz +bmD +bUZ +bqi +bkF +bsG +bwk +bxq +byK +bAA +bwk +bDJ +bDJ +bGV +bDJ +bDJ +bDJ +bMR +bOq +bPR +bPR +bSw +bMK +caP +bWv +bXP +bZx +caO +cbV +cdv +cdv +ceY +ccP +cji +bQz +clQ +cfF +cof +coX +cqz +cqv +csN +ctI +cuM +ctF +ckJ +ccJ +bpx +cuP +czx +bpx +cCV +cDM +cEy +cEZ +bmh +bmh +cqv +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(153,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +anS +aap +atC +aHK +aGs +aLf +aMz +aOs +aPR +aQZ +azM +aUW +aWi +aUt +aUt +aUt +aUt +bcF +aZz +bOI +bid +bjH +aZz +bnn +bnn +bnn +bnn +bnn +bwk +bxp +byM +bAz +bwk +bDC +bFe +bGU +bID +bJW +bLo +bMQ +bBB +bPQ +bQG +bVa +bMK +bYC +bWu +bXO +bZy +bZy +bZy +bZy +bZy +bZy +bZy +bZy +bQy +clN +clN +clN +clN +clN +cfQ +cqv +ctF +ctF +ctF +ckB +cxN +ctF +bpx +ctF +ctF +cjM +cDL +cEx +cEX +cFH +cso +bmh +cLU +cLU +cLU +cLU +abc +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(154,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +anS +aom +anS +anS +anS +anS +anS +anS +anS +anS +aom +anS +aaf +atC +aKO +aJz +aLf +aMC +aOs +aPR +aRc +azM +aWb +aWk +aUt +cdK +aXH +aZo +bdI +aZz +cyq +bid +rkN +aZz +bkv +boq +bqm +bsd +bov +bwk +bwT +byO +bAB +bCe +bDE +cMf +bGX +bIH +bJY +bLo +bMK +bMK +bMK +bMK +bMK +bMK +bVi +bWw +bXQ +bZB +caW +cbX +cdx +cid +cid +chM +bZy +bQD +aZT +cLU +cLU +cLU +cLU +cLU +cqv +cdI +cuO +cvK +cmd +cxQ +cyJ +czr +bpx +cBt +cCW +cDL +cEx +cuP +cEy +cGK +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(155,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aDs +aEu +aAK +aLf +aLq +aOu +aPR +aRb +aTe +azN +aWj +aBy +aBy +aBy +aTe +aTe +aZz +bjP +bib +bjP +aZz +bmJ +bop +bqj +bqj +btX +bwk +bxu +byK +bAx +bwk +bDB +bFf +bGW +bIG +bJX +bLo +bFD +bsr +bCp +bRg +bSz +bTH +aUL +gHt +bXP +bZy +cdw +cbW +cfa +cfk +cgx +chL +bZy +bQD +aZT +cLU +cLU +cLU +cLU +cLU +cqv +ctJ +cuN +cvJ +clq +cxP +cyI +czp +bpx +cBs +cuP +cDM +cEy +cuP +cEy +cGK +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(156,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aap +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aDs +aDs +aHX +aNc +aMD +aOx +aPT +aRd +aTe +cgF +aWo +aXI +aXI +bbk +beY +beu +aEi +dxK +bid +bjR +bkY +bmN +bos +bqo +bos +btZ +bvy +bxv +byR +bAC +bwk +bCp +aQY +bGY +aQY +aQY +bCp +bFD +bFD +bCp +bRi +bSC +bTK +bVb +bWy +bXR +bZA +bZA +bZA +bZA +bZA +bZy +bZy +bZy +bRC +aZT +cLU +cLU +cLU +aac +aaf +cqv +cgB +cuP +cvP +cmq +cnN +cyK +czs +bsN +cjj +cCY +czv +cuP +cuP +cEy +cGK +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(157,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aus +aDs +aHW +aLf +axE +aOv +axE +axE +aTe +cgA +aWn +aUz +aUz +bbh +bcE +bcH +bdK +bfk +bit +bjQ +aZz +bmM +bmP +bqn +bmP +btW +bwk +bzf +byQ +bAx +aLT +bjB +bFB +bHb +bKf +bFD +bLE +bFD +bFD +bCp +bRh +bHj +bTI +aUL +bWx +bXP +aXw +caX +caD +cdz +bZA +cgy +bYf +bQt +bQD +bYf +bYf +cLU +cLU +cLU +cLU +cqv +cuP +cuP +cvL +cmk +bpx +bpx +ctF +ctF +ctF +cCX +cDN +cEz +cFb +cFI +csp +bmh +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(158,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aus +aDs +aIa +aLf +aSu +aOz +aPW +aRe +azN +aUN +aWq +aXN +aXN +bbl +bcJ +bdN +aIO +bgK +biF +bjS +aZz +bmZ +bna +bna +bna +bua +bwk +bxw +byS +bAD +bCf +cMe +bDO +bHc +bFD +bFD +bLq +bFD +bNV +bCp +bRj +bRj +bRj +bRj +bWz +bXS +bZE +cbd +ccb +cdB +bZA +bYf +bYf +bpv +bRG +bRP +bYf +cLU +cLU +cLU +cLU +cqv +ctO +cuR +cvS +cnH +bpx +csO +czu +cmw +bmh +bmh +cqv +cqv +cqv +bmh +bmh +cqv +aaf +aaf +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(159,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDs +aDs +aDs +aLe +aLf +aAz +aOy +aPU +aPU +aSi +aUK +aWp +aXJ +aXJ +aXJ +aXJ +bdM +aEi +bgJ +bix +rkN +aZz +bmP +bov +bov +bov +bua +aXK +aXK +baA +bBJ +aXK +bBT +bFC +bGZ +bmp +bJP +bLF +bFD +bFD +bCp +bRk +bSA +bTL +aWP +bWx +bXP +aXw +cbb +bSE +cdA +bZA +bZG +bXj +bXj +bXj +bQD +bYf +cLU +cLU +cLU +cLU +cqv +cuP +cuQ +chV +cnj +btn +ceC +cpH +cAp +bvP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(160,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +csM +cLU +cLU +aaI +aaq +aaI +aaI +aaI +aam +aaI +aaI +aaI +aam +aaI +aam +aam +aam +aam +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDC +bdx +bdz +aLf +aMC +aOA +aPR +aRf +azN +aUO +aWr +aWr +aWr +aWr +aWr +aWr +aEi +bgJ +bix +bjv +aZz +bmP +bmP +bmP +bmP +bub +aXK +bay +bwu +bAF +aXK +bEV +bFD +bmd +bFD +bFD +bLs +bMT +bFD +bCp +bRm +bSG +bTN +bVd +bWB +bmj +bZA +bZA +bZA +bZA +bZA +caR +bXj +ccc +bXj +bQD +aZT +cLU +cLU +cqv +cqv +cqv +cqv +clt +cie +cnV +bpx +csP +czv +cAt +bmh +cLU +crc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(161,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaI +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aaf +aaf +cLU +cLU +aam +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aDC +ayF +aIr +aLf +aMz +aOA +aPR +aRg +aTe +aUZ +aWC +aYh +aYh +bbC +aYh +aYh +aEi +bfa +bmB +bjZ +aZz +bna +bna +bqp +bna +bna +aXK +bxx +byT +bAE +aXK +bFD +bjG +bHa +bEV +bFD +bLG +bFD +bsr +bCp +bRl +bPw +bTM +aWP +bWA +bky +bmk +bmr +bpW +bTl +bXU +car +car +cca +bXj +bQD +aZT +cLU +cLU +bmh +crD +csO +bpx +cuP +chX +cnN +bsN +bsN +bsN +bsN +cgv +cqF +cqR +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(162,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaI +cLU +amJ +anB +aoo +cLU +amJ +anB +aoo +cLU +amJ +anB +aoo +aaf +aaI +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aDC +ayB +aIb +aLf +aAz +aOC +aPY +aRj +aTe +aVa +aWD +aWD +aWD +aWD +aWD +aYh +aEi +bgJ +bKy +bkb +aZz +bYf +bYf +bYf +bYf +bYf +aXK +aXK +bAs +baA +aXK +bCp +bFh +bCp +bCp +bCp +bCp +bCp +bCp +bCp +bRn +bRn +bRn +bRn +bfh +bYf +bYf +bYf +bYf +bXj +bYk +cbf +cbf +ccG +bXj +bQD +aZT +cLU +cLU +bmh +cen +ceC +cgt +ceC +cjq +cnV +bpx +csO +czn +cEZ +bmh +cLU +cqD +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(163,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +aaf +cLU +cLU +aaI +aaf +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aDC +aDC +aGC +aIb +aLf +aMG +aRk +aPX +aRh +aTe +aVb +aWE +aVk +aZy +bcP +bcY +cdD +aEi +bgJ +aLD +bka +bmT +aVJ +aLN +aVJ +aVJ +aXq +aVJ +bxy +byU +bAG +bDi +bDF +bFg +bHd +bKh +bmX +bpr +bPO +bPO +bPO +bPO +bPO +bPO +bPO +bxV +bYg +bPO +bPO +bwV +bXj +bXj +bXj +bXj +bXj +bXj +bQD +aZT +cLU +cLU +bmh +cki +csP +bpx +cuP +cjn +coe +cpt +ceC +cpH +cAp +bvP +cLU +cqD +aaf +crP +crP +crP +crP +crP +crP +cto +cbO +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(164,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaI +aaf +amJ +anw +aoo +aaf +amJ +anw +aoo +aaf +amJ +anw +aoo +aaf +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +arK +bHi +aGL +aIR +aLf +aLf +aLf +aLf +aLf +aTe +aTe +aTe +aTe +aZz +aZz +aZz +aZz +aZz +bjj +bjk +bGd +aZz +bpj +aLU +bpj +bpj +bpj +bpj +brh +brh +brh +brh +bDG +bFk +brL +bYf +boe +bsE +bMO +bMO +bMO +bMO +bMO +bMO +bMO +bMO +bIw +bIw +bIw +bYd +caQ +caQ +chC +bOC +bOC +bOC +bRT +bYf +cLU +cLU +cqv +cqv +cqv +cqv +bpx +cjy +cuW +cqv +csP +czx +cmG +bmh +cLU +cqD +cLU +cLU +cLU +aap +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(165,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +aaf +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +arK +aEW +aug +bMP +aJR +aJR +aJR +aJR +aJR +aJR +aJR +aJR +aJR +bbf +bbm +bcK +bdQ +bdQ +bgL +biH +rkN +cte +bpj +boz +bqr +bsk +bsf +bvz +bvA +bxB +bAH +brh +bDU +bFj +bIx +bIx +bIx +bIx +bMO +bOr +bPS +bOs +bMO +bTP +bVe +bZJ +bXV +bZI +bXY +bYc +bYc +bYc +cci +bYf +bYf +cjO +bYf +bYf +aaf +aaf +aaf +aaf +cqv +ctQ +chw +cjv +cuP +cqv +cqv +cqv +cqv +cfQ +aaf +cCJ +aap +cLU +cLU +cLU +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(166,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaI +aaI +cLU +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +amJ +anw +aoo +cLU +cLU +cLU +cLU +cLU +aoJ +aCv +aCv +aCv +aCv +aDC +aFd +aDC +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aIg +aZz +bbn +bcQ +bdV +bdV +bdV +bKy +rkN +cte +aFz +bpl +odK +bui +byX +bvz +bzc +boI +bAJ +bpp +aXx +aXx +bIx +khd +bKa +pFS +bMO +bOt +bPU +bOs +bMO +aTZ +bVh +bWE +bXX +bZK +caJ +cce +cdH +ccd +cgG +bYf +cjl +chB +ckt +aZT +cLU +cLU +cLU +aaf +cqv +ctR +cuP +cvZ +cwQ +cqv +cLU +aaf +cLU +cLU +cLU +cqD +aap +cLU +cLU +cLU +aaf +aaf +aaf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(167,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +cLU +aaf +cLU +cLU +aaf +aca +aaf +aaf +aaf +aca +aaf +cLU +aaf +aca +aaf +cLU +cLU +cLU +aCv +aoJ +aoJ +azD +aBp +aEX +aCv +aEC +aFc +aDC +aJI +aLj +aMP +hLX +hLX +aRK +aTh +aVc +aTh +aYj +aZz +bbn +bcL +bdR +bfl +bgI +biJ +bkd +bkZ +aFz +bpl +bqt +buj +byY +bvz +bzA +boI +bAI +bpp +brH +bFl +bIx +bDT +bKc +bDT +bMO +bOs +bPT +bRo +bRo +aTY +bVg +bWD +bXW +bZM +bXZ +ccs +cdG +cgR +bMU +bYf +cjf +cjR +cgV +aZT +cLU +cLU +cLU +cLU +cfQ +cqv +cqv +cqv +cqv +cqv +cLU +aaf +cLU +cLU +cLU +cqD +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(168,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +akH +alp +alp +alp +ace +alp +alp +alp +ace +alp +alp +alp +ace +alp +alp +alp +afD +afW +agR +aig +ajD +auq +auS +avX +aSG +aFw +aJD +aJJ +aJW +aMg +qlX +hLX +aRK +hLX +aVc +hLX +aYj +aZz +bcw +bdu +aZz +aZz +bdJ +hPt +rkN +blh +aFz +bpl +bqZ +bse +byZ +bvz +bxz +boI +bAK +bpp +bDK +bDK +bIx +bFn +bKc +bLw +bMO +bHG +bOs +bOs +bOs +bTU +bVk +bWG +bYe +cfd +bXY +ccA +cdM +bYc +bNe +bYf +bYf +bYf +bYf +bYf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cqD +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(169,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +cLU +aaf +aaf +aca +aaf +cLU +aaf +aca +aaf +cLU +aaf +aca +aaf +cLU +cLU +cLU +aoJ +aCv +aCv +aAk +aDB +aDY +aGy +aED +aDC +aDC +aLi +aCs +aDh +aNj +aRL +aRL +aRL +aRL +aRL +aRL +aZB +bbH +bdd +bey +aZz +bgV +hPt +rkN +blg +aFb +boE +bqs +bxD +bue +bvz +bxA +boI +oaC +bpp +bDK +bFm +bIx +bDZ +bKb +bKe +bMO +bOs +bOs +bOs +bOs +bTS +bVj +bWF +bYa +bZL +bXY +bYc +bYc +bYc +bNb +aZT +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +cqD +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(170,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaq +aaI +cLU +aaf +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +aaf +cLU +cLU +cLU +aCv +aCv +aCv +aCv +aCv +aFd +aDC +ayR +aJk +aCJ +aDi +aOf +aRM +aRM +aRM +aRM +aRM +aRM +aZC +bbI +bde +bbs +aZz +bgH +hPt +bkf +blO +brh +aLr +bqv +aLr +bpp +bpp +wJf +boI +iok +bpp +bDM +bDN +bDP +bFG +bIy +bBk +bMO +bOx +bOs +bOs +bOs +aTZ +bVm +bWH +bYi +bXb +bIw +caU +ccD +bsE +bNb +aZT +cLU +aac +cLU +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +cdO +bXx +cLU +cLU +cLU +cqD +cLU +aaf +cLU +cLU +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(171,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +aaf +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +aDC +aFd +aDC +azw +aJM +aKb +aMq +hLX +aEh +aVd +hLX +aVd +hLX +aWl +aLc +aRL +bdd +aOL +aZz +dxK +hPt +bjD +blO +bne +boI +bqu +boI +buf +bvB +boI +boI +bAN +bpp +aRE +bDD +bIx +bvT +bHV +bCC +bMO +bOw +bOs +bOs +bMO +aTZ +bVl +bWG +bYh +bZN +bIw +caS +ccD +ccD +bNb +aZT +cLU +cLU +cLU +cdO +cog +coY +coY +com +cog +coY +coY +com +cog +coY +coY +cdO +cLU +cLU +cLU +cqD +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(172,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +amJ +anE +aoo +aaf +amJ +anE +aoo +aaf +amJ +anE +aoo +cLU +aaf +cLU +cLU +cLU +aaf +aaf +cLU +cLU +arK +aFd +aDC +aIf +aJN +aLo +aMU +hLX +aEv +aVd +hLX +aVd +hLX +hLX +aYt +aRL +bdd +aYt +aZz +bha +hPt +rkN +blO +bng +boK +boH +byV +buh +bza +bza +jYD +bAN +bpp +bmx +bFq +bIx +bzj +bIO +bNn +bMO +bOy +bPV +bRp +bMO +bTP +bVR +bWG +bYm +bMO +bIw +bJh +bMt +bMt +bNi +bYf +cLU +cLU +cLU +cdO +coj +coZ +coY +com +coj +coY +coY +com +coj +coZ +coY +cdO +aaf +aaf +aaf +cfr +cqF +crE +cqF +crI +aaf +aaf +aaf +aaf +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(173,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaI +aaf +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +amJ +anE +aoo +cLU +aaf +cLU +cLU +cLU +cLU +aaf +aaf +cLU +arK +aFd +aDC +aIg +aIg +aIg +aIg +aIg +aIg +aEJ +aTi +aWy +hLX +hLX +qlX +aRL +bdd +bfy +aZz +dxK +hPt +bjv +blO +bnh +boI +bsg +bsh +bug +bDX +mGD +bze +bAM +bpp +aSB +bFp +bIx +bIx +bIx +bIx +bMO +bMO +bMO +bMO +bMO +bMO +bMO +bWK +bYj +bMO +bVI +bIY +cdL +cdL +cdL +cdL +cdL +cdL +cdL +cdO +coh +coY +coY +com +coh +coY +coY +com +coh +coY +coY +cdO +cLU +cLU +cLU +aaf +cLU +aaf +cLU +coI +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(174,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +amJ +anF +aoo +cLU +amJ +anF +aoo +cLU +amJ +anF +aoo +aaf +aaI +aaf +cLU +cLU +cLU +cLU +aaf +aaf +aDC +aFe +axd +aGF +aJg +aKY +aMI +aOE +aGF +aIg +aIg +aIg +aQT +aKq +aLl +aRL +bdd +bbE +aZz +bBV +hPt +rkN +blO +brh +boM +bqE +bsj +bsj +bsj +bsj +bze +cfN +bpp +bod +bFt +bIJ +cnu +bKk +bLL +bMX +bOA +bCw +bCw +bSI +bTY +bIJ +cnv +bYo +bww +bVX +bJz +cdL +cgc +cig +che +crh +cky +clY +com +bgd +cpd +bmq +com +bnk +ctS +bpX +com +brs +cxV +brW +cdO +cdO +cdO +cdO +cdO +cdO +bXx +aaf +cCJ +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(175,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +aaf +aaf +cLU +cLU +aaI +cLU +cLU +cLU +cLU +aDC +aDC +aDC +aDC +aFf +aJR +ayK +aJf +aKX +aMH +aOD +aGF +aRl +aSj +aIg +aWG +hLX +aLn +aRL +bdd +aOM +aZz +dxK +hPt +rkN +brU +aGc +boL +bqx +bsj +bsj +bsj +bsj +bze +cfL +aLr +bmU +bFs +bFH +bIP +bKj +bLK +bMW +bOz +bLK +bLK +bSH +bTX +cyE +bWL +bYn +bww +caT +bJj +aYL +cff +cgI +chO +bLl +ckx +clV +com +btk +cpa +btD +crO +btJ +cpa +bup +cwa +btJ +cpa +buz +cpI +bvb +bvW +cDf +cDS +cEA +cdO +cLU +cqD +aaf +aaf +aaf +aah +aah +aal +aat +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(176,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aam +aaI +aaI +aaI +aam +aaI +aaI +aaI +aam +aaI +aaI +aaq +aaI +aaI +cLU +cLU +cLU +cLU +arK +aMf +aQL +aDC +aFg +aGF +aGF +aGF +aGF +aMK +aGF +aGF +aEZ +aTW +aXj +hLX +aWz +aEJ +aRL +bdf +bcm +aZz +bhi +hPt +rkN +brU +aGe +boO +bqI +bul +bul +bvD +bvD +rYD +bAQ +bJK +bpY +bWN +bIJ +byG +bKo +bKo +bMY +bOB +bPX +bRr +asj +byG +bIJ +bWP +bAU +bww +bms +bJB +aYL +cfh +cgI +chO +bLv +ckA +cfn +com +con +cpg +cqC +cpg +cqC +ctU +cvb +cpg +cvb +cpg +cyN +czP +cAz +cBB +coY +coY +coY +cdO +cLU +coI +cLU +aag +aap +aap +aap +aak +aax +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(177,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +arK +bHi +bHi +aUB +aFg +aGF +aHv +aJh +aCM +aMJ +aOF +aGF +aFl +aSm +aIg +aGM +aVx +aLp +aRL +bdg +hLX +aZz +bhe +hPt +rkN +brU +aGc +boN +bnx +bsn +bud +bvC +bxE +bAO +aLr +aLr +bDY +bFu +bIJ +bIJ +bKo +bKo +bMY +bOB +bPX +bRr +asj +bIJ +bIJ +bTt +bYp +bww +chB +bIY +cdL +cge +cgK +chQ +bLr +ckz +cif +com +col +crQ +crQ +crQ +crQ +czP +crQ +crQ +cwR +crQ +crQ +cpK +bvc +bvX +coY +coY +coY +cdO +cLU +coI +cLU +aah +aap +aap +aak +aap +aat +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(178,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +arK +ats +aSe +aDC +aFg +aGF +aHx +aJm +aCR +aMN +aOH +aGF +aGG +aGG +aGG +aGG +aGG +aGG +aGG +bcS +aGG +aZz +bfK +hPt +rkN +blk +blO +blO +brh +brh +brh +bwv +bpp +bpp +aLr +cFR +cFU +cFZ +bKv +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bIJ +bVp +bCj +bYr +bww +bww +bJF +cdO +cdO +aZb +chS +bNq +ceW +com +com +com +com +cbp +crQ +ctT +ctX +cve +cvq +cwd +crQ +crQ +czP +cAB +com +com +com +com +cdO +cLU +coI +aaf +aah +aah +aaj +ckw +aap +aat +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(179,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aDC +aDC +aDC +aDC +aFg +aGF +aHw +aAM +aDg +aML +aOG +aGF +aRo +aHA +aUP +aWs +aHA +aZs +bbp +bcR +aHA +aEe +bhj +hPt +rkN +brU +brU +blO +bqJ +bss +bww +bCl +aLZ +bAR +bAR +bAR +bEa +bFw +bAR +bIT +bKp +bLQ +bMZ +bOE +btv +bLQ +bSD +bIT +bAR +bAR +bYq +aWW +bww +bJE +cdR +bXx +bce +chR +bLO +com +cit +cdE +coo +com +cbo +crQ +csm +ctW +cvc +cwb +cwc +cxW +crQ +cpL +bvb +bvZ +cDf +cDS +cEA +cdO +cLU +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(180,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +aaf +aaf +cLU +cLU +cLU +cLU +cLU +aaf +aDC +aFg +aGF +aHz +aJn +aJn +aMO +aOI +aPZ +aRq +aSo +aUQ +aWt +aXV +aZu +aXV +bcU +bee +aEe +dxK +djd +fpV +tAY +tAY +boP +bqO +bsu +buq +bvE +aMe +bzh +bAT +bCi +bEc +bFz +bHk +bHk +bKr +bLS +bNd +bOF +bLS +bRt +bLS +bLS +bLS +bLS +bYt +aXa +cbi +bme +bBf +bFQ +bIa +bKw +bPa +aIu +bVK +bVK +bVP +aYB +aBb +bVK +bVK +cgz +bVK +cjA +cok +cxX +cxX +cpO +cAz +cDd +coY +coY +coY +cdO +aaf +cCJ +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(181,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +cLU +cLU +aaf +aaf +arK +aFg +aGF +aHy +aHy +aLg +aGF +aGF +aGF +aII +aSn +aFp +aTo +aXT +aZt +aXT +bcT +bea +bfq +bhl +biK +rkN +brU +brU +aGX +bqN +bst +bun +bwy +aMd +bCh +bAS +bCh +bCh +bCh +bCh +bCh +bKq +bLk +bNc +bCh +bCh +bRs +bCh +bOp +bCh +bCh +bYs +aWX +bww +bkj +cdU +cdO +uLP +bJN +bNS +com +cop +ctV +cvd +com +aRO +crQ +crQ +crQ +crQ +crQ +coi +crQ +crQ +czI +byd +bwa +coY +coY +coY +cdO +cLU +coI +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(182,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +aaf +arK +aFg +aGG +aHC +aJo +aJo +aGG +aHA +aHA +aRr +aTo +aFp +aTo +aTo +aTo +aTo +bdl +aTo +aEe +dxK +bik +rkN +blk +blO +blO +bnI +bnI +bnI +bnI +bHm +xOe +bAW +bCk +aQB +aQB +aQB +aQB +cwt +bGa +bMV +aSJ +bTk +bWC +aSJ +bMV +aVq +aVq +aVq +bww +bww +roQ +cdO +cdO +aZP +bKB +bSY +cfg +bdX +bdX +com +com +aTD +cks +csS +ctZ +crQ +crQ +coi +cpA +crQ +cpS +cAD +com +com +com +com +cdO +cLU +coI +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(183,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +aap +aaf +arK +awi +aGG +aHA +aHA +aHA +aMQ +aHA +aHA +aRr +aSs +aFp +aTo +aXW +aZv +aXW +bcV +bee +bfx +bhm +biL +wqh +bln +aGg +boQ +bqP +bsw +bur +bvK +cFM +bCj +uFU +tDI +aQB +bmF +bBg +bBg +bCt +bEv +bMV +bOG +bWY +bRu +aUA +bMV +aaf +aaf +aaf +bMV +bYb +bnb +cdS +bYy +cgQ +bKz +cjF +ckC +cme +cdS +aat +cdO +cdO +cdO +cdO +cdO +csj +crQ +coq +com +crQ +cpP +bvb +bwm +cDf +cDS +cEA +crF +cLU +coI +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(184,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +crP +aaf +cLU +cLU +aaf +arK +awo +aIz +aHE +aJq +aJq +aJq +aJq +aJq +aRz +aSt +aUS +aSt +aXY +aZt +aXT +bcX +bek +aEe +dxK +bii +rkN +brU +aGi +boS +bqR +bsC +but +bvK +bxL +bCj +uFU +bCh +aQB +bOR +bNh +bDW +bzG +bzI +bMV +clU +bWY +bRx +aTG +bMV +aZw +aZw +aZw +bMV +caY +bpV +aZq +cfm +cgT +bKU +bUs +ckF +cmf +bHr +aaf +cLU +cLU +cLU +cLU +cdO +cgD +crQ +cou +com +cyP +cpS +cAz +cGs +coY +coY +coY +crF +cLU +coI +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(185,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +arK +arK +aGG +aHD +aJp +aHA +aHA +aHA +aHA +aRy +aHA +aUR +aHA +aXX +aHA +poU +bcW +aHA +aEe +dxK +bji +rkN +bum +aGg +aHs +bqQ +bsz +bus +bvK +bnq +bCj +uFU +eZK +bGa +bIL +bNf +bCs +cwZ +cxC +bMV +bOH +bQb +bRw +bSL +bXi +bQq +bWQ +bYu +bMV +bXT +bpV +aZq +cfm +cgT +bKD +cjF +ckD +cmf +bHr +aaf +cLU +cLU +cLU +cLU +cdO +csk +cwe +cos +com +crQ +cpT +bCq +bwq +coY +coY +coY +crF +cLU +coI +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(186,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +aaf +aaf +aGG +aHG +aGG +aLm +aLm +aGG +aQb +aGG +aSv +aGG +aGG +aXZ +dMz +aGG +bda +aGG +aZz +hgq +vme +rkN +blO +bnI +boU +bqS +bsF +bAX +bvL +bxO +bHq +bHo +bCm +bGa +bLV +aRn +bOK +cwZ +cyh +bsO +bzF +bQd +bRz +bSO +bXn +bVt +bWQ +bYw +bMV +bXT +bpV +aZq +cfm +cgT +bKD +cjF +ckD +cmf +bHr +aaf +cLU +cLU +cLU +cLU +cdO +chT +chT +cpb +cdO +ccn +cpV +cdO +cdO +cdO +cdO +cdO +bXx +aaf +cCJ +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(187,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +aaf +aaf +aaf +aGG +aDE +aGG +aLk +aMT +aGG +aOJ +aRA +aSl +aGG +bbq +aBR +aCI +lAZ +bcZ +yjb +aRZ +bdW +biN +bkg +bmc +bxM +boT +bzg +bsD +bBl +bvK +tos +aMo +bHn +bNc +bGa +csB +cyi +cyi +cwZ +ctz +bzb +bOJ +bQc +bRy +bSN +bMV +bVs +bWS +bYv +bMV +bXT +bpV +cdS +bJZ +cgW +bKV +bVr +ckF +ciz +cdS +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +coI +cLU +cLU +coI +cLU +cLU +cLU +cLU +cLU +aaf +cLU +coI +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(188,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +aaf +aaf +aGG +aIx +aGG +aum +aum +aGG +aGG +aGG +aGG +aGG +aWv +aYb +bel +bel +bel +bel +bfA +ihN +dMn +bfc +bmc +bpH +boV +bqT +aLx +buu +bvM +bxP +bww +aPL +aTd +bGa +bVo +bMb +bCg +cxs +cyi +bre +bzE +bQg +bRB +bSQ +bMV +bFX +bHu +bFX +bMV +bwM +brE +cdS +cfp +cgY +cjD +cni +ckI +cmi +cdS +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cfr +cpB +cpB +cpZ +cpB +cpB +cpB +cpB +cpB +crE +cpB +crL +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(189,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aRZ +aSw +aUT +aWx +aYa +jva +jva +jva +jva +kxa +xVT +biP +bkh +bmc +bnI +bnI +bnI +bnI +bnI +bnI +bww +bww +bHp +bCL +bGa +bGa +bGa +bGa +bGa +bGa +bMV +bOQ +bQf +bRA +bSP +bMV +bFJ +bHe +bPY +bMV +caZ +bpV +cdS +cfo +cgX +cjC +cls +ckH +cmh +cdS +cLU +cLU +aaf +crP +crP +crP +crP +crP +crP +crP +crP +crP +cbO +crP +crP +crP +crP +crP +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(190,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +nky +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +aaf +cLU +aaf +cLU +cLU +cLU +cLU +aaf +aaf +aRZ +aSx +aUV +aWx +aZL +aZL +aZL +aZL +aZL +vfH +ihN +biR +bkp +bns +bpE +bFP +bmv +bsM +buw +bzD +bAV +bBd +bHI +bie +bFy +bGb +bGb +boc +bGb +bqy +bMV +bOU +bQh +bRE +bSS +bMV +bFX +bWU +bFX +bMV +cba +bpV +cdS +cgw +cha +clo +cls +ckD +cml +cdS +cLU +cLU +cLU +crP +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +cLU +cLU +aaf +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(191,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aRZ +aRZ +aKu +aWx +mYp +mYp +mYp +mYp +mYp +vfH +ihN +biQ +aSY +aRZ +boD +bpL +bqV +bhw +bpF +bpF +boa +bnM +bHy +bhZ +bFr +bGc +bGc +bIS +bKl +bLN +bMV +bOu +bQh +bwL +bxZ +bFa +bGg +bIN +bQo +bMV +cbc +bpV +aZq +bHf +bJI +chY +bVF +ckD +cmf +bHr +cLU +cLU +cLU +crP +aaf +cua +cvi +cwf +aaf +cua +cvi +cwf +aaf +cua +cvi +cwf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(192,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +noT +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ayk +aUh +aUV +aWx +aYf +aZN +aZN +aZN +aZN +yce +bhp +aZN +aTg +aRZ +bpJ +bpJ +brr +boo +bpF +bpF +bwF +bnM +bIq +bjf +bEn +bEn +bEn +bEn +bEn +bqB +bMV +bOW +bQh +bRH +bSV +bUc +bVy +bOv +bYA +bMV +bIX +bLZ +aZq +cft +cha +chY +cjF +ckD +cmf +bHr +cLU +cLU +cLU +cbO +cLU +cua +cvj +cwf +cLU +cua +cvj +cwf +cLU +cua +cvj +cwf +aaf +crP +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(193,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ayk +aSy +aQo +cBH +aFu +aSF +bbu +aUY +ben +sGZ +aHe +aWA +bhn +aRZ +bnM +bnM +bjl +bjl +drR +drR +bjl +bjl +aQp +aTf +bCJ +bbx +bbx +bEn +bsb +bqB +bMV +bOV +bQi +bRF +bST +bSS +bSS +bRD +bSS +bMV +ccM +ceK +aZq +cfs +chb +cic +cjG +ckL +cmf +bHr +cLU +cLU +cLU +aaf +aaf +cua +cvj +cwf +aaf +cua +cvj +cwf +aaf +cua +cvj +cwf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(194,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +cLU +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +ayk +azP +azP +azP +aGk +aDD +bbv +bdh +beo +aDD +aHu +azP +azP +aRZ +cLU +cLU +bjl +bph +bph +bph +bph +bjl +bIB +bju +bCJ +bbx +bbx +bEn +bte +bqB +bMV +bMV +bMV +aXy +bMV +bMV +bMV +bMV +bMV +bMV +cav +cfe +cdS +cfu +chc +cih +cjH +ckN +cmn +cdS +cLU +cLU +aac +aaf +cLU +cua +cvj +cwf +aaf +cua +cvj +cwf +cLU +cua +cvj +cwf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(195,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +aaf +aaf +cLU +crP +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +azP +bbw +azP +ayk +ayk +ayk +azP +bjd +azP +aaf +cLU +cLU +cLU +bjl +bph +bph +bph +bph +bjl +sVy +bIE +bCJ +bCJ +bCJ +bCJ +bqX +bsU +bGb +bPZ +bQk +bRI +bSW +bXq +bVH +bVH +bVH +cbL +ccS +ccw +cdS +cdS +cdS +cdS +cdS +cdS +cdS +cdS +aaf +aaf +aaf +aaf +cLU +cua +cvj +cwf +aaf +cua +cvj +cwf +aaf +cua +cvj +cwf +cLU +cLU +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(196,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +cLU +aaf +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +azP +bhq +azP +aaf +aaf +aaf +azP +bkl +azP +cLU +cLU +cLU +cLU +bjl +bph +bph +bph +bph +bjl +bIz +bjA +bHs +bko +bAi +bCJ +bEn +aRi +aRi +bEn +bQl +bRM +bSX +bUn +bUG +bZU +bJQ +bZT +bLI +ccy +bXT +cfw +cgN +chZ +cmp +ckP +bem +beO +beO +cLU +cLU +aaf +cLU +aaf +anC +cLU +cLU +aaf +anC +cLU +cLU +aaf +anC +cLU +cLU +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(197,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aQU +aLW +azP +aaf +cLU +aaf +azP +aNM +aQU +aaf +cLU +cLU +aac +bjl +bph +bph +bph +bph +bjl +bBj +bCB +bEd +bkt +bHw +bCJ +aaf +cLU +cLU +bOO +bOO +aXL +bOO +bOO +bOO +bOO +bYB +bZS +bUn +bFU +cdX +bNT +bPy +bPW +bQu +ckO +cob +cno +cqs +cpm +cqJ +cqJ +cqJ +cqJ +amK +cqJ +cqJ +cqJ +amK +cqJ +cqJ +cqJ +amK +cqJ +cqJ +cqJ +cFL +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(198,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +apc +aaf +crP +aaf +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +blM +bjl +bjl +bjl +bjl +bjl +aPa +aPa +aMM +bkt +bHw +aPa +aaf +cLU +cLU +bOO +bQn +bRO +bHY +bUe +bVA +bOO +bUn +bUn +bUn +ccv +cDE +bOo +cgP +chG +cjx +cfl +beO +beO +beO +cLU +cLU +aaf +cLU +aaf +anC +cLU +cLU +aaf +anC +aaf +cLU +aaf +anC +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(199,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aMM +bkt +bHw +aPa +aaf +cLU +cLU +bOO +bQm +bRN +bSZ +bFS +bVz +bOO +aaf +cLU +bUn +bUn +cfI +bUn +cgN +cgN +cgN +cgN +beO +aaf +aaf +aaf +aaf +aaf +aaf +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +cua +cvl +cwf +cLU +cLU +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(200,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bvO +pAd +pAd +pAd +bvO +aMM +bkt +bHw +aPa +aaf +cLU +cLU +bOO +bLU +bWn +bTc +aTb +bVG +bOO +aaf +aaf +aaf +bUn +bVZ +bUn +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +cua +cvl +cwf +cLU +cua +cvl +cwf +cLU +cua +cvl +cwf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(201,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +aac +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +mVl +mLL +vVU +tRc +aMM +bFW +bHw +aPa +aaf +aaf +aaf +bOO +aTb +aTb +aTb +bOO +baO +bOO +aaf +cLU +aaf +bUn +ceg +cnt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(202,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +tCN +gSL +gyJ +tRc +aMM +bkt +bHw +aPa +aaf +cLU +aaf +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cLU +aaf +bUn +cfU +bUn +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +cua +cvl +cwf +cLU +cua +cvl +cwf +aaf +cua +cvl +cwf +aaf +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(203,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bxQ +cSp +tQY +tRc +aPa +bkr +bHv +aPa +aaf +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aaf +cLU +bEo +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaq +cLU +cua +cvo +cwf +aaf +cua +cvo +cwf +aaf +cua +cvo +cwf +cLU +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(204,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bZP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +buR +hZw +hZw +fyf +buR +aPa +bkU +btH +bCJ +cLU +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +aaf +ceq +aaf +aaf +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +crP +cLU +cLU +aaf +aaf +cLU +aaf +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cbO +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(205,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +brg +eWD +eTV +tRc +aPa +xHt +bHx +bCJ +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(206,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bzN +ejv +oDi +bDQ +aRC +bFY +bHz +aPa +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(207,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +aac +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bwJ +pqS +klX +tRc +aMM +aPa +bCJ +bCJ +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(208,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +bzO +byn +bCr +buR +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +aac +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(209,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +cLU +apc +cLU +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +tRc +tRc +buR +sxY +bCD +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(210,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aam +aaf +apc +aaf +aam +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(211,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +aaf +cLU +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +aaf +ceq +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(212,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +cLU +aaf +aaf +cLU +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(213,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +apc +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(214,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +apc +apc +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +aaf +ceq +aaf +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(215,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +apc +apc +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +crP +cLU +cLU +cLU +crP +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(216,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +aaf +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +cLU +ceq +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(217,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cLU +aaf +aaf +aaf +aaf +aaf +ceq +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(218,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +apc +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +cLU +ceq +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(219,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +crP +cto +cbO +crP +crP +crP +crP +crP +aaf +aaf +aaf +aaf +cLU +cLU +aaf +cLU +aaf +cLU +cLU +cLU +aaf +cLU +aaf +cLU +ceq +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(220,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +crP +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +cLU +aaf +bKE +bKE +bNj +bOP +bKs +bKt +bKt +bKt +bby +bKt +bKt +bKt +bKs +bOP +ces +bKE +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(221,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +bKE +bLT +bLT +bKt +bKt +bKt +bMe +bUf +bLT +bQr +bMe +bKt +bKt +bKt +ceq +cfy +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(222,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKE +bMd +bLT +bNj +bQs +bRQ +bMe +bUf +bLT +bQr +bMe +bRQ +bUj +bNj +ceq +cfA +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(223,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKE +bLT +bNk +bKt +bQr +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bUf +bKt +cet +bNk +bKE +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(224,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKs +bKs +bKt +bKt +bQr +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bUf +bKt +bKt +bKs +bKs +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(225,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKs +bKt +bKt +bMe +bMe +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bMe +bMe +bKt +bKt +bKs +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(226,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bUf +bLT +bQr +bMe +bMe +bMe +bMe +bMe +bKt +bKt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(227,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +bKt +bMe +bMe +bMe +bMe +bMe +bTd +bUi +bLT +bXa +bTd +bMe +bMe +bMe +bMe +bMe +bKt +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(228,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKt +bKF +bNm +bMe +bMe +bMe +bMe +bMe +buA +bMe +bMe +bMe +bMe +bMe +ceu +bKF +bKt +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(229,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bUj +bKF +bQs +bMe +bMe +bMe +bMe +bMe +bMe +bKt +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(230,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +bKu +bKt +bMe +bMe +bMe +bMe +bMe +bUf +bMe +bQr +bMe +bMe +bMe +bMe +bMe +bKt +bKu +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(231,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(232,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(233,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bMe +bMe +bMe +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(234,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bMe +bVL +bMe +bMe +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(235,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bMe +bKF +bMe +bKt +bKt +aaf +aaf +cLU +cLU +aac +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(236,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aac +cLU +cLU +cLU +aaf +aaf +bKt +bKt +bKu +bKt +bKt +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(237,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aaf +aaf +aaf +cLU +aaf +aaf +aaf +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(238,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(239,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(240,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(241,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(242,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(243,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(244,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(245,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(246,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(247,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(248,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +aIv +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(249,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(250,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(251,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(252,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(253,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(254,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} +(255,1,1) = {" +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +cLU +"} diff --git a/maps/exodus/exodus-admin.dmm b/maps/exodus/exodus-admin.dmm new file mode 100644 index 00000000000..65b0058866f --- /dev/null +++ b/maps/exodus/exodus-admin.dmm @@ -0,0 +1,53835 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aab" = ( +/turf/space, +/area/space) +"aad" = ( +/turf/unsimulated/wall, +/area/centcom) +"aaZ" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"abr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"acd" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/supply_shuttle) +"ach" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"ack" = ( +/obj/effect/shuttle_landmark/supply/start, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"acl" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "supply_shuttle"; + pixel_x = 25; + tag_door = "supply_shuttle_hatch" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"adL" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"adP" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar West"; + dir = 4 + }, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"aeD" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"afI" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/pint, +/turf/simulated/floor/wood, +/area/merchant_station) +"agK" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"ahh" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood, +/area/merchant_station) +"ahu" = ( +/obj/machinery/door/unpowered/simple/sandstone, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"ahF" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + icon_state = "heater" + }, +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"ahG" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom) +"aiB" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"akE" = ( +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"amB" = ( +/turf/simulated/mineral, +/area/merchant_station) +"amO" = ( +/obj/machinery/atmospherics/omni/filter{ + active_power_usage = 2500; + tag_east = 1; + tag_south = 4; + tag_west = 2 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"amU" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "beach" + }, +/area/holodeck/source_beach) +"anT" = ( +/obj/structure/sign/warning/airlock, +/turf/unsimulated/wall, +/area/centcom/control) +"anU" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"aoA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"apl" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"apv" = ( +/turf/simulated/wall/sandstone, +/area/holodeck/source_temple) +"apw" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + name = "Warehouse" + }, +/obj/machinery/door/firedoor, +/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/merchant_station) +"asN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"asX" = ( +/obj/item/flame/lighter/zippo/random, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"atv" = ( +/obj/machinery/button/blast_door{ + id_tag = "syndicate_elite_mech_room"; + name = "Mech Access"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"auD" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"avn" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/green, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"avQ" = ( +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"awe" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"axF" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"axK" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"ayi" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/showcase{ + desc = "A self-contained autopilot that controls supply drones."; + icon_state = "comm_server"; + name = "Supply Drone Virtual Intelligence" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply_shuttle) +"azR" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"azS" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad"; + id_tag = "QMLoad" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/supply_shuttle) +"aAa" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"aAl" = ( +/turf/unsimulated/wall, +/area/space) +"aAH" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aAM" = ( +/turf/simulated/wall/titanium, +/area/shuttle/supply_shuttle) +"aAR" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aAS" = ( +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aBc" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/supply_shuttle) +"aBz" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/supply_shuttle) +"aBI" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/plating, +/area/centcom/evac) +"aCm" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/space, +/area/shuttle/supply_shuttle) +"aCt" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/space, +/area/shuttle/supply_shuttle) +"aCL" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aCU" = ( +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aDp" = ( +/obj/item/storage/secure/safe{ + pixel_x = -25 + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aDB" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"aDF" = ( +/obj/machinery/computer/shuttle_control/emergency, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aDK" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"aDR" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aEg" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/toxin, +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Bridge East" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aEv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aEU" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"aEW" = ( +/obj/structure/AIcore/deactivated, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aEX" = ( +/obj/machinery/computer/station_alert/all, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aFa" = ( +/obj/machinery/status_display, +/obj/effect/paint_stripe/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aFM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aFY" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Cell" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aGC" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire, +/obj/item/extinguisher, +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Bridge West" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aGD" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aGE" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aGF" = ( +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aGG" = ( +/obj/item/stool/padded, +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aGP" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/structure/sign/warning/docking_area, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aGR" = ( +/obj/effect/paint_stripe/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aGT" = ( +/obj/structure/table/standard, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aHb" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aHc" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aHe" = ( +/obj/machinery/computer/modular/preset/security, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHg" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHh" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aHp" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHr" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHs" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "escape_shuttle"; + pixel_y = -25; + tag_door = "escape_shuttle_hatch" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aHt" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aHu" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aHz" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aHA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aHF" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHG" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHN" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aHW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aIh" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aIj" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aIt" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aIv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aIy" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aIz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aIA" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aIR" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_shuttle) +"aIS" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aIT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aJu" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJv" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aKa" = ( +/obj/machinery/door/airlock/command{ + autoset_access = 0; + req_access = list("ACCESS_BRIDGE") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aKb" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals - Holding Cell"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aKd" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Holding Cell" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aKo" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aKv" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aKC" = ( +/obj/machinery/door/blast/regular{ + id_tag = "CentComPort"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aKD" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aKW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aKX" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aKY" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aKZ" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLa" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLc" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aLd" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aLe" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aLf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLh" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLl" = ( +/turf/simulated/floor/tiled/white, +/area/shuttle/escape_shuttle) +"aLm" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id_tag = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLn" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals North"; + dir = 8 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLs" = ( +/obj/structure/closet/hydrant{ + pixel_x = 30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aLv" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLw" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLz" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLB" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aLD" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"aLE" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/escape_shuttle) +"aLF" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLG" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/door/window/southright{ + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLJ" = ( +/obj/structure/sign/redcross, +/turf/unsimulated/wall, +/area/centcom/holding) +"aLL" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/extinguisher, +/obj/item/crowbar, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aLP" = ( +/obj/machinery/door/airlock/security{ + autoset_access = 0; + req_access = list("ACCESS_SECURITY") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aLQ" = ( +/obj/machinery/atm{ + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLV" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMd" = ( +/obj/machinery/access_button/airlock_interior{ + id_tag = "centcom_escape_dock_north_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMe" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_north_inner"; + name = "Escape Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "centcom_escape_dock_north_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "centcom_escape_dock_north_airlock"; + master_tag = "centcom_escape_dock"; + pixel_y = 24; + tag_airpump = "centcom_escape_dock_north_pump"; + tag_chamber_sensor = "centcom_escape_dock_north_sensor"; + tag_exterior_door = "centcom_escape_dock_north_outer"; + tag_interior_door = "centcom_escape_dock_north_inner" + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMg" = ( +/obj/machinery/airlock_sensor{ + id_tag = "centcom_escape_dock_north_sensor"; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMh" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_north_outer"; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + id_tag = "centcom_escape_dock_north_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = -26 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMm" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aMn" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Center" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aMo" = ( +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/holding) +"aMp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMr" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aMs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMt" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMu" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle West"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aMA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMG" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/status_display, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aMH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMT" = ( +/obj/machinery/hologram/holopad, +/obj/effect/shuttle_landmark/escape_shuttle/start, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aMU" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle East"; + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aMW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMY" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/amanita_pie, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNb" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNc" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNh" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/stew, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/book/manual/barman_recipes, +/obj/item/reagent_containers/glass/rag, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNl" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNn" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNx" = ( +/obj/machinery/door/airlock/glass{ + autoset_access = 0; + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNA" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aNB" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/boiledrice, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNC" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/beetsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNI" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/stuffing, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNJ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/soylenviridians, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNL" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Airlock One;Airlock Two"; + child_tags_txt = "centcom_escape_dock_north_airlock;centcom_escape_dock_south_airlock"; + dir = 1; + frequency = 1380; + id_tag = "centcom_escape_dock"; + pixel_y = -25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNN" = ( +/obj/machinery/access_button/airlock_interior{ + id_tag = "centcom_escape_dock_south_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNQ" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_south_inner"; + name = "Escape Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aNR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "centcom_escape_dock_south_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + dir = 1; + frequency = 1380; + id_tag = "centcom_escape_dock_south_airlock"; + master_tag = "centcom_escape_dock"; + pixel_y = -25; + tag_airpump = "centcom_escape_dock_south_pump"; + tag_chamber_sensor = "centcom_escape_dock_south_sensor"; + tag_exterior_door = "centcom_escape_dock_south_outer"; + tag_interior_door = "centcom_escape_dock_south_inner" + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aNS" = ( +/obj/machinery/airlock_sensor{ + id_tag = "centcom_escape_dock_south_sensor"; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aOv" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_south_outer"; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + id_tag = "centcom_escape_dock_south_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aOZ" = ( +/obj/machinery/status_display{ + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aPa" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aPe" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"aPr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aPK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aPL" = ( +/obj/machinery/door/airlock/civilian, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aPN" = ( +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aPO" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aPR" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/bloodsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aPS" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/tofukabob, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aRl" = ( +/turf/unsimulated/wall, +/area/centcom/holding) +"aRm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/poppypretzel, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aRC" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aRN" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aRS" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"aRT" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion" + }, +/turf/space, +/area/centcom/evac) +"aSO" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aSP" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aVh" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"aVl" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"aWf" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"aWs" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aYL" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aZp" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"bak" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = null; + charge = 2.5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 0; + output_attempt = 1; + output_level = 250000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bch" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"bfj" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"bgb" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"bgI" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"bgJ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"bhY" = ( +/obj/effect/landmark{ + name = "ActorSpawn" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"bil" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"bjb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"bjr" = ( +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"bjG" = ( +/obj/machinery/vending/medical, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"bjS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Maintenance Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"bkb" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"bmx" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"bnl" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bou" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bpb" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"bpF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"bpJ" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/ferry) +"bqs" = ( +/turf/unsimulated/wall, +/area/centcom/test) +"brb" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/machinery/computer/cryopod/robot{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"brs" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"btC" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/holodeck/source_volleyball) +"bua" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 9; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"buc" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"bvb" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/spesslaw, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"bvj" = ( +/obj/machinery/computer/modular/preset/library, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"bvz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"bvM" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"bwE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"bxn" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/obj/structure/decoy{ + name = "A.L.I.C.E." + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"byb" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/candiedapple, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"byk" = ( +/obj/machinery/tele_projector{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"byM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9; + icon_state = "intact" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/tank/nitrogen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"bzl" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet{ + dir = 8 + }, +/area/holodeck/source_meetinghall) +"bzm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/mushroomsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"bzZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bAG" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4; + icon_state = "burst_l"; + name = "propulsion" + }, +/turf/space, +/area/shuttle/merchant/home) +"bAS" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/ionrifle, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bBa" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"bBi" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"bCW" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bDh" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"bDk" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"bEB" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"bET" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"bFD" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"bHQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bJd" = ( +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"bKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bMb" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/meatsteak, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"bMd" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"bMk" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 10; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"bMD" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/plating, +/area/merchant_station) +"bNF" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "admin_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/effect/shuttle_landmark/admin/start, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"bQo" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"bRZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"bSy" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cell"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"bTF" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"bTH" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"bVS" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/space) +"bYq" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"bYH" = ( +/obj/structure/table/standard, +/obj/item/wrench, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"bZb" = ( +/obj/item/device/multitool, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"bZq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"bZv" = ( +/obj/structure/closet/secure_closet/hos, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"bZC" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"cah" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled/airless, +/area/merchant_station) +"cbg" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"cbw" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"ceE" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"cfA" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"cfX" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"cgV" = ( +/obj/structure/bed/chair/shuttle/black, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"chQ" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"cix" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"ciT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"cjj" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/pinpointer/advpinpointer, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cjD" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"cjU" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"clD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashbangs, +/obj/item/handcuffs, +/obj/item/device/flash, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/glasses/tacgoggles, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"clW" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cnG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/merchant_station) +"cnP" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"cnZ" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"cpg" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"cpS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/merchant_station) +"cqP" = ( +/obj/machinery/computer/arcade, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"csc" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"csj" = ( +/obj/machinery/vending/cola{ + name = "Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ctk" = ( +/obj/machinery/vending/snack{ + name = "Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"cus" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 0; + pixel_y = 29 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"cuC" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"cwp" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/start{ + name = "Merchant" + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"cwE" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "CREED"; + name = "Ready Room"; + p_open = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"cxx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"cxG" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"czX" = ( +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"cAI" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_5_recovery"; + pixel_x = -25; + pixel_y = 25; + req_access = list(list("ACCESS_EXTERNAL")); + tag_door = "escape_pod_5_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"cCk" = ( +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cCq" = ( +/obj/machinery/door/airlock/centcom{ + name = "Teleporter Bay"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cCS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"cDm" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"cEu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"cEK" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"cER" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"cEX" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"cFY" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_meetinghall) +"cGo" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle West Storage"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"cGV" = ( +/obj/item/storage/lockbox, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"cGY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/merchant_station) +"cHL" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cIe" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"cIv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"cIK" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"cJS" = ( +/obj/structure/table/rack, +/obj/item/rig/military/equipped, +/obj/item/rig/military/equipped, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cLk" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"cMl" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"cMT" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/merchant_station) +"cNV" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"cPL" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"cPR" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/corners{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cQH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"cRq" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle"; + pixel_x = -25; + pixel_y = 0; + req_access = list("ACCESS_CENT_GENERAL"); + tag_door = "admin_shuttle_hatch" + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"cTa" = ( +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"cTm" = ( +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"cTH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cUI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"cWg" = ( +/obj/structure/table/reinforced, +/obj/random/clipboard, +/obj/item/stamp, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"cWr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Courtroom"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"cWC" = ( +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"cXO" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cYW" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"cZm" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"cZr" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cZR" = ( +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"dac" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"dcN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"dfc" = ( +/obj/item/beach_ball/holovolleyball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"dhf" = ( +/obj/effect/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"dih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"dkl" = ( +/obj/machinery/computer/arcade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"dkF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"dkK" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"dly" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"dlQ" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"dmk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"dmq" = ( +/obj/structure/table/rack, +/obj/item/storage/secure/briefcase, +/obj/item/storage/fancy/cigarettes, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/belt/utility, +/obj/item/storage/backpack/satchel, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"dnl" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"dnP" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/centcom/holding) +"dor" = ( +/obj/machinery/door/airlock/hatch{ + name = "Storage" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"doY" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton{ + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dro" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"drV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "merchant_ship_vent" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"dtE" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"dtJ" = ( +/obj/machinery/shieldgen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"dwt" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/vox/vox_casual, +/turf/simulated/floor/plating, +/area/merchant_station) +"dwM" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 1; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"dyu" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/food/drinks/teapot{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"dyD" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = list("ACCESS_BAR") + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"dzi" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"dzr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"dzs" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle East Storage"; + dir = 8 + }, +/obj/machinery/cryopod/robot{ + time_till_despawn = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"dzu" = ( +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"dzy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"dAX" = ( +/obj/structure/decoy{ + icon_state = "ai-malf"; + name = "GLaDOS" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_elite_squad) +"dBg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"dBn" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert_dug" + }, +/area/holodeck/source_beach) +"dBB" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"dDt" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"dEm" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/merchant_station) +"dEC" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/recharger, +/obj/item/device/eftpos, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"dFW" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Witness Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"dGz" = ( +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"dGB" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"dGG" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"dHN" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"dJd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"dLx" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"dMC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"dNk" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"dOo" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"dQv" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/holodeck/source_temple) +"dTJ" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"dVg" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"dWY" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"dXw" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"dZd" = ( +/obj/machinery/fabricator/hacked, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ebb" = ( +/obj/item/device/radio/intercom/syndicate{ + dir = 8; + pixel_x = 22 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_elite_squad) +"ece" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ecn" = ( +/turf/unsimulated/beach/coastline{ + density = 1; + opacity = 1 + }, +/area/beach) +"edo" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"edu" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/holodeck/source_volleyball) +"eew" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"eeP" = ( +/obj/machinery/telecomms/bus/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"efg" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"efs" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken6" + }, +/area/holodeck/source_temple) +"efX" = ( +/obj/item/inflatable_duck, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"ehC" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"ejs" = ( +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"ejR" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"ekb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"ekT" = ( +/obj/structure/table/holo_woodentable, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"elJ" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 1; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"epB" = ( +/obj/machinery/power/emitter, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"epF" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"epX" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Red Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"eqW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"eqZ" = ( +/obj/machinery/chem_master, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"err" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"etv" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/item/reagent_containers/spray/cleaner, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"etZ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"exJ" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"exW" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eyl" = ( +/turf/unsimulated/mineral, +/area/space) +"ezr" = ( +/obj/machinery/computer/shuttle_control/merchant{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"ezY" = ( +/obj/machinery/door/airlock/centcom{ + name = "Medical Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"eAu" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"eBJ" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"eBW" = ( +/turf/simulated/floor/tiled, +/area/space) +"eBZ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"eCw" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/escape_shuttle) +"eCE" = ( +/obj/structure/curtain, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken4" + }, +/area/holodeck/source_temple) +"eDH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/iv_drip, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"eFr" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"eGn" = ( +/turf/simulated/wall/r_titanium, +/area/centcom/evac) +"eKq" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 2500; + tag_east = 1; + tag_east_con = 0.21; + tag_south = 2; + tag_west = 1; + tag_west_con = 0.79 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"eLs" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"eNG" = ( +/obj/structure/table/rack, +/obj/random/medical, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eNN" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion" + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"ePF" = ( +/obj/machinery/computer/crew{ + dir = 8; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"eUy" = ( +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = 22 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"eVC" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 8; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_temple) +"eVH" = ( +/obj/machinery/door/airlock/centcom{ + name = "Creed's Office"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/creed) +"eWT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eXe" = ( +/obj/machinery/door/window/southleft, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor_switch{ + id = "merchantbelt2" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eYF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eYL" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"eYX" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8; + icon_state = "wooden_chair_wings" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"fbA" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fcp" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"fcF" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"fcP" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fcY" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"fdV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fea" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fes" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4; + icon_state = "wooden_chair_wings" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"feP" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ffJ" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/card/id/centcom, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"fhl" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"fho" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"fhY" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 5; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"fil" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"fis" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/melee/energy/axe, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fjm" = ( +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/wood, +/area/merchant_station) +"fju" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"fjE" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"fkb" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar Center" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"fkv" = ( +/obj/item/paper{ + info = "\[center]\[b]READ INSTRUCTIONS CAREFULLY\[/b]\[/center]\[br]\[br]Hello! Welcome and congratulations on being hired for NanoTrasen's new Television initiative. You are now tasked with the creation and production of NanoTrasen brand television that is to be broadcasted to all of our stations!\[br]\[br] We've outfitted these facilities with all the materials and objects you will need.\[br]On the port side you'll find various venders and machines, namely the Wardrobe Dispenser, which will dispense holoclothing and items for you to use, and a Quickee brand plastic surgery machine (which I would remind you you are contractually obligated to \[b]not\[/b] report to the authorities.) which can change your appearance into anything you want, even other races. Stern and aft you'll find all the materials we could muster up on short notice. Use it to decorate the stage to your liking. Starboard you'll find gases, microwaves, hydroponic trays and the like. Go silly! This is already paid for (as are you) so do what you want and entertain!"; + name = "Actor's Guild Instruction Pamphlet" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"flC" = ( +/obj/item/stool, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"flH" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fmn" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"fmF" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"fnf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/defibrillator/loaded, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"fnk" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"fnD" = ( +/obj/item/clothing/head/collectable/paper, +/turf/unsimulated/beach/sand, +/area/beach) +"fnN" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"fpu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"fpC" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"fpE" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fpV" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/shuttle/escape_shuttle) +"fqj" = ( +/obj/structure/table/rack, +/obj/item/rig/light/internalaffairs/equipped, +/obj/item/rig/light/internalaffairs/equipped, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fsh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"fsC" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fsI" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"ftO" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/random/handgun, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"fwi" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/suppy) +"fxw" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fyA" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"fAm" = ( +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fBc" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"fBv" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"fCk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/eastright, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"fDo" = ( +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"fDu" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fEF" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fFh" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/tdome) +"fFz" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fGH" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"fHv" = ( +/turf/simulated/wall/wood, +/area/holodeck/source_cafe) +"fHw" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_station_interior"; + locked = 1; + name = "Station Exterior" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"fHG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"fHR" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"fIL" = ( +/obj/machinery/light/small, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"fKT" = ( +/obj/item/beach_ball, +/turf/unsimulated/beach/sand, +/area/beach) +"fMq" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fMA" = ( +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"fNw" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/space) +"fNJ" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"fOf" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"fQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fQx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fRC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fTr" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/space, +/area/space) +"fTH" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"fUv" = ( +/obj/structure/table/reinforced, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/taperoll/police, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"fUy" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fYf" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"fYU" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/ferry) +"fZb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"gal" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"gaB" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"gaH" = ( +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"gbi" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"gbs" = ( +/obj/effect/floor_decal/stoneborder/corner, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"gbB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"gct" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"gcV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"gdp" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"gdv" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"gdz" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/material/kitchen/rollingpin, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"gex" = ( +/obj/structure/closet/crate/medical, +/obj/item/circular_saw, +/obj/item/surgicaldrill, +/obj/item/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/bonesetter, +/obj/item/scalpel, +/obj/item/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/hemostat{ + pixel_y = 4 + }, +/obj/item/cautery{ + pixel_y = 4 + }, +/obj/item/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/nanopaste, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"gge" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"ghj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"ghY" = ( +/obj/structure/table/woodentable{ + dir = 10 + }, +/obj/machinery/button/blast_door{ + id_tag = "CREED"; + name = "Spec Ops Ready Room"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/button/blast_door{ + icon_state = "doorctrl0"; + id_tag = "ASSAULT"; + name = "Mech Storage"; + pixel_y = -4 + }, +/obj/machinery/button/blast_door{ + id_tag = "ert_synth_equipment"; + name = "Synth Equipment"; + pixel_x = 5; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"gid" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"gin" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 3; + tag_west = 2 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gjw" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/bigbiteburger, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"gky" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Airlock" + }, +/obj/machinery/door/blast/regular{ + id_tag = "syndicate_elite_mech_room"; + name = "Mech Room Door" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"gkL" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"gkM" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gmB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"goj" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"gox" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"gpe" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"gqk" = ( +/obj/structure/table/standard, +/obj/item/paper, +/obj/item/pen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"grI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"grR" = ( +/obj/structure/cable, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"gsd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/merchant_station) +"gsj" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/wrench, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"gsv" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"gtb" = ( +/obj/machinery/pipedispenser, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"gtc" = ( +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"guf" = ( +/obj/structure/table/standard, +/obj/item/card/id/centcom, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"gvu" = ( +/obj/machinery/door/window/northright, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gAi" = ( +/obj/structure/table/standard, +/obj/item/cautery{ + pixel_y = 4 + }, +/obj/item/hemostat{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"gAj" = ( +/obj/structure/sign/warning/engineering_access{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"gAq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"gAN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gAU" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gCe" = ( +/obj/machinery/computer/modular/preset/library{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"gCZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "merchant_station_vent" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"gDI" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/gun/projectile/automatic/bullpup_rifle, +/obj/item/gun/projectile/automatic/bullpup_rifle, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"gEm" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"gFt" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/grass{ + amount = 50 + }, +/obj/item/stack/tile/grass{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gGr" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"gHg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/merchant_station) +"gIm" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gIG" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 8; + icon_state = "beachcorner" + }, +/area/holodeck/source_beach) +"gJq" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"gKP" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gLJ" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 0 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"gMh" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gMJ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"gQL" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"gRU" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"gSz" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"gVa" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gVq" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"gWz" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gWR" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"gXh" = ( +/obj/item/wrench, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"gYp" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gZe" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"gZo" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"gZM" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"had" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donut, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"haH" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"hbv" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_ship_exterior"; + locked = 1; + name = "Ship Exterior" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + pixel_x = 0; + pixel_y = -28 + }, +/obj/effect/shuttle_landmark/merchant/start, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"hbQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular, +/obj/item/device/flash, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/flash, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hcs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "merchantbase"; + name = "Merchant Loading Shutters" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hdc" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"hdw" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 8; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_temple) +"heK" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"heU" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"heW" = ( +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"hfd" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"hfk" = ( +/obj/machinery/computer/shuttle_control{ + dir = 2; + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Centcom" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"hfX" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"hhT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"hil" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hiY" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"hjm" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_shuttle_fore_hatch"; + locked = 1; + name = "Forward Docking Hatch" + }, +/obj/effect/shuttle_landmark/specops/start, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/specops/centcom) +"hjw" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hjK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hkM" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/accessory/storage/holster, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"hlP" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"hnq" = ( +/turf/simulated/floor/plating, +/turf/simulated/wall/r_titanium, +/area/centcom/evac) +"hoQ" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"hqg" = ( +/obj/effect/floor_decal/corner/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"hqj" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hrc" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"hsz" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"hsG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"huK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8; + icon_state = "spline_plain" + }, +/obj/structure/holonet/end, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"hvp" = ( +/turf/simulated/floor/asteroid, +/area/merchant_station) +"hwE" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hwN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hxw" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/space, +/area/centcom/evac) +"hxP" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"hyN" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"hyV" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/suppy) +"hAj" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"hAQ" = ( +/obj/structure/closet/secure_closet/bar, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"hAX" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hBn" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"hCd" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hDq" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"hEf" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hEG" = ( +/obj/structure/sign/redcross{ + pixel_y = -32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"hFt" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"hFA" = ( +/obj/machinery/pipedispenser, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hHa" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"hIU" = ( +/obj/machinery/camera/network/ert{ + c_tag = "Assault Armor South"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"hJN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_volleyball) +"hJX" = ( +/obj/structure/bed/chair{ + dir = 4; + name = "Defense" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"hKJ" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"hKM" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Arrivals Medbay" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hLr" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"hMM" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/prepainted, +/area/merchant_station) +"hMN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"hOo" = ( +/obj/machinery/chemical_dispenser/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hOE" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"hPf" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hPi" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hPs" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"hQT" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"hSg" = ( +/obj/machinery/computer/crew{ + dir = 4; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"hSl" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"hSG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hTb" = ( +/obj/structure/iv_drip, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hTI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"hUs" = ( +/obj/effect/floor_decal/beach/corner{ + dir = 8; + icon_state = "beachbordercorner" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"hUY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"hVe" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 4; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"hVo" = ( +/turf/unsimulated/beach/coastline, +/area/beach) +"hVv" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hWV" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"hYN" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome" + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"hZC" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"hZJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"iad" = ( +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"ibR" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet, +/area/merchant_station) +"ibS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_ship_interior"; + locked = 1; + name = "Ship Exterior" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"icp" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ide" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"idD" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"iel" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert_dug" + }, +/area/centcom/holding) +"iet" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/sinpockets, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ieX" = ( +/obj/machinery/porta_turret/crescent{ + check_synth = 1; + enabled = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"igT" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"ihc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"ihN" = ( +/obj/machinery/door/airlock/hatch{ + name = "Infirmary" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"ikv" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"ilE" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"ipJ" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"iqx" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"irg" = ( +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"irC" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"itR" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"iuw" = ( +/obj/item/paper_bin, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"ivX" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"iwz" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo/random = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"iwZ" = ( +/obj/structure/hygiene/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"ixA" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"izn" = ( +/obj/machinery/vending/containers, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iAb" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"iAg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/merchant_station) +"iBu" = ( +/obj/machinery/telecomms/hub/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"iBT" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"iDR" = ( +/obj/machinery/button/blast_door{ + id_tag = "syndicate_elite"; + name = "Hull Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"iEc" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/glass/rag{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"iEp" = ( +/obj/machinery/door/unpowered/simple/wood, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"iEz" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/device/radio/intercom/specops{ + dir = 2 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"iFf" = ( +/obj/item/inflatable_duck, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"iFm" = ( +/obj/machinery/vending/fashionvend, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iHT" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iIb" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"iIE" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"iII" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"iIK" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "centcom_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 0; + pixel_y = -24; + tag_door = "centcom_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"iIM" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/device/paint_sprayer, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iIR" = ( +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"iIY" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iJK" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 30; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"iKe" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"iKL" = ( +/obj/structure/table/holotable, +/obj/item/device/megaphone, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"iLo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iLr" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 4; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"iLL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"iMs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"iMU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"iNr" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iNX" = ( +/obj/structure/closet/secure_closet/medical2{ + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"iOY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"iOZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"iQg" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"iQW" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"iRk" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_centcom_dock_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"iRS" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo/random = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iRY" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Court Reporter's Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"iSd" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"iSe" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"iSh" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"iTq" = ( +/obj/item/stamp/captain, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"iTI" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iVg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"iVD" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iWV" = ( +/obj/structure/bed/chair/wood{ + dir = 4; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"iXm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"iYo" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"iYJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Holding Cell"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"iZt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jat" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/obj/structure/holonet/end{ + dir = 8; + icon_state = "volleynet_end" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"jaZ" = ( +/obj/structure/table/reinforced, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jcG" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"jcL" = ( +/obj/structure/table/rack, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jcQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/storage/box/syringes, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jdP" = ( +/obj/item/stool, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"jes" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"jeF" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"jfV" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jgN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jia" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/holodeck/source_temple) +"jim" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"jjg" = ( +/turf/simulated/floor/plating, +/area/merchant_station) +"jlk" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"jll" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jow" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations Boarding Pod"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"joL" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jpr" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"jpR" = ( +/obj/machinery/door/airlock{ + id_tag = "rbath"; + name = "Bathroom" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"jpX" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"jqP" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"jrv" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"jsc" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jsi" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/obj/effect/landmark/start{ + name = "Merchant" + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"jtV" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"juO" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"jxe" = ( +/obj/effect/floor_decal/stoneborder, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"jyg" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Green Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"jyq" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jyr" = ( +/obj/structure/synthesized_instrument/synthesizer/piano{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"jzi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jzQ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"jAG" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"jAI" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"jAX" = ( +/obj/machinery/chemical_dispenser/full, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"jBa" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_temple) +"jCz" = ( +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jCU" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"jGN" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jHa" = ( +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"jHj" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"jHG" = ( +/obj/structure/table/rack, +/obj/item/device/lightreplacer, +/obj/item/device/lightreplacer, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jHJ" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"jIi" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"jJW" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"jKx" = ( +/obj/item/beach_ball, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"jLz" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken2" + }, +/area/holodeck/source_temple) +"jLF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"jMI" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/door/window/brigdoor/southright, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"jNg" = ( +/obj/machinery/button/blast_door{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome Access"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "crescent_vip_shuttle"; + name = "VIP Shuttle Access"; + pixel_x = 6; + pixel_y = -34 + }, +/obj/machinery/button/blast_door{ + id_tag = "CREED"; + name = "Spec Ops Ready Room"; + pixel_x = -6; + pixel_y = -34 + }, +/obj/machinery/turretid{ + pixel_x = 28; + pixel_y = -28; + req_access = list("ACCESS_CENT_GENERAL") + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jNv" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"jRe" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"jRy" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"jRE" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"jSH" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"jVy" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"jVU" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/space, +/area/merchant_station) +"jWm" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"jYN" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"jZB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"jZW" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/circuitboard/borgupload, +/obj/item/stock_parts/circuitboard/aiupload{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"kaj" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor_freezer{ + amount = 50 + }, +/obj/item/stack/tile/floor_freezer{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"kca" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"kcv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kdF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"keA" = ( +/obj/effect/wingrille_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"keE" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kfk" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"kgB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"khR" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"kim" = ( +/obj/machinery/vending/boozeomat, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"kiH" = ( +/mob/living/simple_animal/tindalos{ + name = "Eddy" + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"kiL" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kjk" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"kky" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/storage/box/trackimp, +/obj/item/storage/box/cdeathalarm_kit, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"kkM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"kkN" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"kmU" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"knz" = ( +/obj/effect/paint/sol, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"knE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kpQ" = ( +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kqd" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1; + start_pressure = 740.5 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/merchant_station) +"ksG" = ( +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"kuG" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"kvN" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"kwe" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 8; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"kyZ" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"kAv" = ( +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"kAO" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"kAQ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kBa" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kBb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kBZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"kCk" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"kDg" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"kEh" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kFc" = ( +/obj/machinery/computer/shuttle_control{ + dir = 8; + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Administration" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"kFu" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/carpet, +/area/merchant_station) +"kFG" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"kGn" = ( +/obj/structure/table/rack, +/obj/item/storage/bag/cash, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kIF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"kKN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"kLu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"kNE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kNY" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"kOF" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"kPy" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kPI" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"kPL" = ( +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"kQC" = ( +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kRQ" = ( +/obj/structure/table/standard, +/obj/item/surgicaldrill, +/obj/item/circular_saw, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kSw" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"kSS" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"kSY" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kTl" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"kUH" = ( +/obj/structure/closet/secure_closet/medical3{ + pixel_x = -5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"kXc" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"kXO" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"kYs" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"kYz" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kZf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lby" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"lcs" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"ldj" = ( +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"ldY" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"lea" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"leq" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_temple) +"lgH" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lhj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ljR" = ( +/obj/item/device/camera, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lkc" = ( +/obj/structure/closet{ + name = "Wardrobe" + }, +/obj/item/clothing/shoes/leather, +/obj/item/clothing/under/blazer, +/obj/item/clothing/under/lawyer/black, +/obj/item/clothing/under/suit_jacket/navy, +/turf/simulated/floor/carpet, +/area/merchant_station) +"lld" = ( +/obj/structure/table/standard, +/obj/item/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/scalpel, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"llr" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/simulated/floor/plating, +/area/centcom/evac) +"lnW" = ( +/obj/item/pickaxe/diamonddrill, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"loR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lsZ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"luh" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"lvd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_volleyball) +"lyd" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/living) +"lzm" = ( +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/shuttle/merchant/home) +"lzq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"lzE" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"lzK" = ( +/obj/machinery/vending/hydroseeds, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"lAl" = ( +/obj/structure/dispenser, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"lBP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"lCg" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_1_recovery"; + pixel_x = 25; + pixel_y = 30; + req_access = list(list("ACCESS_EXTERNAL")); + tag_door = "escape_pod_1_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"lDo" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"lEy" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/transport1/centcom) +"lEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lJs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lJU" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"lLb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"lLY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"lPd" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"lPH" = ( +/obj/structure/window/shuttle{ + icon_state = "window2" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/centcom/evac) +"lQy" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lQQ" = ( +/obj/item/extinguisher, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"lSf" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/melee/energy/axe, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"lSj" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"lSo" = ( +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"lSB" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_ship_dock"; + pixel_x = -24; + pixel_y = 0; + tag_airpump = "merchant_ship_vent"; + tag_chamber_sensor = "merchant_ship_sensor"; + tag_exterior_door = "merchant_ship_exterior"; + tag_interior_door = "merchant_ship_interior" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"lSS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"lTa" = ( +/obj/structure/disposalpipe/segment, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"lTr" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lTJ" = ( +/obj/structure/table/rack, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"lUo" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lVy" = ( +/obj/machinery/door/window{ + dir = 2; + name = "AI Core Door" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lVP" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert0" + }, +/area/holodeck/source_beach) +"lVX" = ( +/obj/item/stool, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"lWt" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"lWX" = ( +/obj/structure/table/reinforced, +/obj/item/card/id/captains_spare, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lYN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"max" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"maT" = ( +/obj/structure/fountain/mundane{ + alpha = 204; + pixel_x = 0 + }, +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_temple) +"mbx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/merchant_station) +"mdi" = ( +/obj/machinery/tele_pad, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"meI" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"meK" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"mgi" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"mgL" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken1" + }, +/area/holodeck/source_temple) +"mhi" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"mho" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"mhI" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"mkd" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "admin_shuttle_bay_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"mkl" = ( +/turf/unsimulated/wall, +/area/centcom/ferry) +"mky" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"mkP" = ( +/obj/structure/table/standard, +/obj/item/storage/box/handcuffs, +/obj/item/device/flash, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"mmt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"mmD" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"mni" = ( +/obj/item/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"mnt" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"mnW" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"mqC" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/simulated/floor/plating, +/area/centcom/holding) +"mrb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"mrB" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"mrO" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/holodeck/source_beach) +"mrU" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"mtm" = ( +/obj/effect/landmark{ + name = "Commando" + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mtn" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"mvt" = ( +/obj/machinery/status_display, +/turf/unsimulated/wall, +/area/centcom/specops) +"mvJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/conveyor_switch{ + id = "merchantbelt1" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mwh" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"mwt" = ( +/obj/machinery/vending/assist, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mwH" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_2_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"mxw" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"myL" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"mzu" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"mzH" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"mAe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mAz" = ( +/obj/structure/table/rack/holorack, +/obj/effect/landmark/costume/chameleon, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"mAC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/airless, +/area/merchant_station) +"mAG" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"mBV" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/obj/item/material/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar East"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"mCs" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"mCw" = ( +/obj/machinery/door/airlock{ + name = "Room A" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"mES" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"mEV" = ( +/obj/structure/closet/crate/medical, +/obj/item/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/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"mGE" = ( +/obj/machinery/fabricator/hacked, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mHo" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"mKy" = ( +/obj/item/paper_bin, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"mKU" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/computer/shuttle_control/merchant{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mLL" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"mMq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_r" + }, +/turf/space, +/area/centcom/evac) +"mNc" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/holodeck/source_volleyball) +"mNe" = ( +/obj/item/mop, +/obj/structure/mopbucket, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mNk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"mNR" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/gun/projectile/automatic/l6_saw, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mOM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/merchant_station) +"mPN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"mQc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mRx" = ( +/obj/structure/bed, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"mTf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mWi" = ( +/obj/machinery/light/small, +/turf/space, +/area/merchant_station) +"mXi" = ( +/obj/machinery/recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"mXz" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"nat" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/merchant_station) +"naC" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_beach) +"nbS" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nfE" = ( +/obj/structure/window/holowindow/full, +/turf/simulated/floor/holofloor, +/area/holodeck/source_cafe) +"nfZ" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"ngq" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"njh" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"nlW" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"nnD" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "ASSAULT"; + name = "Assault Weapon Storage"; + p_open = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"nnI" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/merchant_station) +"non" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/space, +/area/merchant_station) +"nqZ" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/item/storage/secure/safe{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"ntZ" = ( +/obj/structure/table/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/emps, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/gun/launcher/grenade, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"nvs" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"nvZ" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn Random" + }, +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"nxv" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"nxK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"nzk" = ( +/obj/structure/table/steel, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/merchant_station) +"nzG" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"nBg" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/red, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"nBk" = ( +/obj/machinery/door/firedoor, +/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/merchant_station) +"nBZ" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"nDg" = ( +/obj/machinery/camera/network/thunder{ + anchored = 0; + c_tag = "Television"; + name = "Movable Camera" + }, +/turf/simulated/floor/tiled, +/area/space) +"nDh" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"nDO" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"nEj" = ( +/obj/structure/window/reinforced/crescent, +/obj/structure/shuttle/engine/heater{ + dir = 1; + icon_state = "heater" + }, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"nFA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"nGD" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nGF" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"nGV" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"nHR" = ( +/turf/unsimulated/wall, +/area/centcom/suppy) +"nIB" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"nIC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/computer/cryopod{ + density = 0; + pixel_y = 32 + }, +/obj/item/roller, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"nJu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nKf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"nKw" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"nKy" = ( +/obj/machinery/gibber{ + anchored = 0 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"nMc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"nMi" = ( +/obj/machinery/sleeper, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"nME" = ( +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"nMX" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5 + }, +/turf/unsimulated/beach/sand, +/area/beach) +"nNk" = ( +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"nNs" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 9; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"nPB" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"nQl" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space, +/area/space) +"nRH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/merchant_station) +"nSX" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"nTv" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"nUE" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nUN" = ( +/mob/living/simple_animal/crab/Coffee, +/turf/unsimulated/beach/sand, +/area/beach) +"nWv" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"nWN" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"nXC" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"nYr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/chair/wood{ + dir = 4; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"nZL" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_plating) +"nZT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"nZW" = ( +/obj/machinery/computer/robotics{ + dir = 4; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"oaw" = ( +/obj/machinery/vending/cola{ + name = "Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"obn" = ( +/obj/machinery/acting/changer, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"obO" = ( +/obj/machinery/door/airlock/glass{ + name = "Stage" + }, +/turf/simulated/floor, +/area/space) +"ocF" = ( +/obj/machinery/robotic_fabricator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"oeC" = ( +/obj/machinery/acting/changer, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"oeN" = ( +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"ofb" = ( +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/rcd, +/obj/item/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd, +/obj/item/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ofh" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 4; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/holodeck/source_temple) +"ofF" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"ogi" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals Bar" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"ogE" = ( +/turf/unsimulated/beach/water, +/area/beach) +"oie" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"okp" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "centcom_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/effect/shuttle_landmark/ferry/start, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"ond" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"one" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"opv" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"oqR" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"osh" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/wrench, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"otZ" = ( +/obj/machinery/button/blast_door{ + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + pixel_x = 0; + pixel_y = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"owf" = ( +/obj/structure/curtain{ + color = "#68ccab" + }, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken6" + }, +/area/holodeck/source_temple) +"owm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"owq" = ( +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"owu" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/control) +"oww" = ( +/obj/machinery/acting/wardrobe, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"owX" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"oxl" = ( +/obj/structure/table/holotable, +/obj/item/toy/ringbell, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"oxL" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"oxQ" = ( +/turf/unsimulated/floor{ + dir = 9; + icon_state = "vault" + }, +/area/centcom/specops) +"oyT" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/wall, +/area/prison/solitary) +"ozf" = ( +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"oAv" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"oCH" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + icon_state = "heater" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"oDZ" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"oEs" = ( +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"oER" = ( +/obj/machinery/computer/modular/preset/merchant{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"oFU" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/grenade_launcher, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/mounted/plasmacutter, +/obj/item/rig_module/mounted/plasmacutter, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"oGb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"oGr" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_station_dock"; + pixel_x = -28; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT"); + tag_airpump = "merchant_station_vent"; + tag_chamber_sensor = "merchant_station_sensor"; + tag_exterior_door = "merchant_station_exterior"; + tag_interior_door = "merchant_station_interior"; + tag_interior_sensor = null + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_station_sensor"; + pixel_x = -28; + pixel_y = -10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"oID" = ( +/obj/structure/table/steel, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/random/clipboard, +/turf/simulated/floor/tiled, +/area/merchant_station) +"oIK" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"oIP" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"oLw" = ( +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"oMy" = ( +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"oNm" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"oNu" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Office" + }, +/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/wood, +/area/merchant_station) +"oPq" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Security Desk" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"oRg" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"oRM" = ( +/obj/structure/bed/chair/office/light, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"oRN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"oSG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"oTf" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "ASSAULT"; + name = "Assault Armor Storage"; + p_open = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"oTl" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/autoinjectors, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/defibrillator/compact/combat/loaded, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"oTO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"oTT" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"oUB" = ( +/obj/machinery/door/airlock/centcom{ + name = "Armory Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"oUW" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1; + icon_state = "shuttle_chair_preview" + }, +/obj/machinery/light/small, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"oVr" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"oVC" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome - Red Team"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"oVW" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"oXe" = ( +/obj/item/inflatable_duck, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"oYo" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"pbB" = ( +/obj/structure/hygiene/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"pcl" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"pep" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"peO" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"pfy" = ( +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"pga" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/tracker, +/turf/simulated/floor/airless, +/area/merchant_station) +"pgA" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/turf/simulated/floor/carpet, +/area/merchant_station) +"phv" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/turf/unsimulated/beach/sand, +/area/beach) +"phI" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"pjE" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"pkz" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"plU" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_access = list("ACCESS_MERCHANT") + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"pmx" = ( +/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/merchant_station) +"pmY" = ( +/turf/unsimulated/beach/water{ + density = 1; + opacity = 1 + }, +/area/beach) +"pnr" = ( +/turf/simulated/floor/wood, +/area/merchant_station) +"pop" = ( +/obj/machinery/door/airlock/centcom{ + name = "Maintenance Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"poG" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"poM" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"poR" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"ppg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ppj" = ( +/obj/structure/table/rack, +/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/plasteel{ + amount = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pqj" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/carpet, +/area/merchant_station) +"pra" = ( +/obj/machinery/flasher{ + id_tag = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"prt" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/holodeck/source_beach) +"prH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"psq" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pss" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"psC" = ( +/obj/structure/closet/athletic_mixed, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"pta" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn" + }, +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"pvs" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/merchant_station) +"pvv" = ( +/obj/structure/table/woodentable, +/obj/random/single/lighter, +/obj/random/toy, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"pvw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pvZ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"pwa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/sleeping_agent{ + pixel_x = 1 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"pwh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/merchant_station) +"pxS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"pyb" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pye" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"pyJ" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"pyW" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + c_tag = "Green Team"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"pCh" = ( +/obj/machinery/merchant_pad, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pDw" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Jury Box" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"pIm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_meetinghall) +"pIt" = ( +/mob/living/simple_animal/crab, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"pLz" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"pLD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"pMB" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"pML" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"pOK" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"pOT" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/living) +"pQI" = ( +/obj/machinery/atmospherics/pipe/vent, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"pQS" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"pQZ" = ( +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome Arena"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"pRl" = ( +/obj/structure/lattice, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/space, +/area/centcom/holding) +"pTd" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pUu" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/specops) +"pWJ" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"pXd" = ( +/obj/item/device/radio/off, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"pXv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pXw" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"pYb" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"pYu" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/merchant_station) +"pYL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"pYY" = ( +/obj/structure/closet{ + name = "emergency response team wardrobe" + }, +/obj/item/clothing/under/syndicate/combat, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"pZq" = ( +/turf/unsimulated/wall, +/area/centcom/living) +"qfy" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom) +"qfW" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"qgz" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"qgJ" = ( +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"qhv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle"; + pixel_x = -24; + pixel_y = 0; + tag_door = "centcom_shuttle_hatch" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"qip" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"qja" = ( +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"qjx" = ( +/turf/simulated/floor/carpet, +/area/merchant_station) +"qkH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"qmm" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qnk" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/sol, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"qnT" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/captain, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qot" = ( +/obj/structure/closet{ + name = "Wardrobe" + }, +/obj/item/clothing/shoes/black, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/skirt, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"qoA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/merchant_station) +"qpi" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"qrK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qsX" = ( +/obj/machinery/fabricator/hacked, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"qtQ" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"quS" = ( +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"qxw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qxN" = ( +/turf/space, +/area/shuttle/syndicate_elite/mothership) +"qxX" = ( +/obj/machinery/atm{ + pixel_y = 24 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"qyJ" = ( +/obj/machinery/vending/engineering, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"qzm" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"qAj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qAN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"qAW" = ( +/obj/machinery/computer/shuttle_control/specops{ + dir = 2 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"qBa" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"qBg" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"qBK" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qDI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"qEz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qFI" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/beach/sand{ + icon_state = "seashallow" + }, +/area/centcom/holding) +"qFK" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/holodeck/source_beach) +"qGX" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"qHo" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qHU" = ( +/obj/structure/table/rack, +/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 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qJm" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"qJG" = ( +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"qJQ" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"qKr" = ( +/obj/machinery/telecomms/processor/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qLt" = ( +/obj/machinery/computer/prisoner{ + dir = 1; + name = "Implant Management" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"qLH" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"qLM" = ( +/obj/structure/table/reinforced, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"qMD" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_5_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"qNu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"qOO" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"qPC" = ( +/obj/machinery/vending/cigarette{ + name = "cigarette machine"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"qRv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"qUn" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"qUU" = ( +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_cafe) +"qXn" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qYS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"qZe" = ( +/obj/machinery/door/airlock/centcom{ + name = "Research Facility"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/test) +"rba" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"rbE" = ( +/obj/structure/holonet, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"rco" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/snacks/chips, +/turf/unsimulated/beach/sand, +/area/beach) +"rcG" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"rcO" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/gun/projectile/automatic/sec_smg, +/obj/item/gun/projectile/automatic/sec_smg, +/obj/item/gun/projectile/automatic/sec_smg, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rfY" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"rgK" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/centcom/holding) +"rgN" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"rie" = ( +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"riv" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"rko" = ( +/obj/machinery/door/airlock/centcom{ + name = "Engineering Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rns" = ( +/obj/machinery/computer/operating{ + dir = 8; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"rnP" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rpv" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/merchant_station) +"rqG" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"rqT" = ( +/obj/machinery/biogenerator, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"rsb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"rst" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"rtr" = ( +/obj/structure/table/standard, +/obj/item/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"rvu" = ( +/obj/item/aiModule/nanotrasen, +/obj/item/aiModule/reset, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/protectStation, +/obj/item/aiModule/quarantine, +/obj/item/aiModule/paladin, +/obj/item/aiModule/robocop, +/obj/item/aiModule/safeguard, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rvN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"rze" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"rzF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/largecrate, +/obj/random/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"rBk" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"rCy" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"rDI" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/merc, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rEQ" = ( +/turf/unsimulated/wall, +/area/prison/solitary) +"rFf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"rFn" = ( +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/item/clothing/head/bandana{ + pixel_y = -10 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"rFu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"rGE" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"rJI" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"rKY" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"rLt" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"rLz" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/merchant_station) +"rMv" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations Command"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rMw" = ( +/obj/machinery/door/blast/regular{ + id_tag = "ert_synth_equipment"; + name = "Synthetics Modification Equipment" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rNA" = ( +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/wall, +/area/space) +"rOV" = ( +/obj/machinery/vending/robotics, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"rQC" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"rRg" = ( +/obj/structure/table/rack, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rRx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"rSQ" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"rTE" = ( +/obj/machinery/shieldwallgen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rUq" = ( +/obj/machinery/door/airlock/centcom{ + name = "Arrivals Processing"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"rUG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"rVA" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"rXa" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"rYj" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"rYW" = ( +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"sao" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_beach) +"sbh" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 1; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"scR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sdh" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"sdG" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"seD" = ( +/turf/simulated/wall/prepainted, +/area/merchant_station) +"sfj" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"sfS" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/sign/warning/docking_area, +/turf/space, +/area/space) +"shj" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beachcorner" + }, +/area/centcom/holding) +"shE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket{ + amount_per_transfer_from_this = 50 + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"siP" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sjE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/surgery, +/obj/item/reagent_containers/glass/bottle/stoxin, +/obj/item/reagent_containers/syringe, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"skA" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_shuttle_port_hatch"; + locked = 1; + name = "Port Docking Hatch" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/specops/centcom) +"skB" = ( +/obj/structure/table/reinforced, +/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, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"slX" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"smd" = ( +/obj/machinery/optable, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"smK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"sos" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"soF" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"soU" = ( +/obj/machinery/hologram/holopad/longrange, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"spx" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/space) +"spN" = ( +/obj/structure/table/rack, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"sqz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"sra" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"srS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "merchantbase"; + name = "Merchant Loading Shutters"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ssc" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/clipboard, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"sse" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ssy" = ( +/obj/machinery/door/window/southright, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"stt" = ( +/obj/structure/table/reinforced, +/obj/random/loot, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"stZ" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton{ + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"svD" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"swl" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"swv" = ( +/obj/structure/table/rack, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"swW" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"syn" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"syy" = ( +/obj/structure/closet/crate, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"szy" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"sAo" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"sAK" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_2_recovery"; + pixel_x = -25; + pixel_y = 30; + req_access = list(list("ACCESS_EXTERNAL")); + tag_door = "escape_pod_2_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"sAT" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken4" + }, +/area/holodeck/source_temple) +"sBb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sBg" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"sBs" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"sDl" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"sDo" = ( +/obj/machinery/portable_atmospherics/powered/pump, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"sDC" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/gun/nuclear, +/obj/prefab/hand_teleporter, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sDZ" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"sEn" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"sFu" = ( +/obj/structure/table/rack, +/obj/item/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/glasses/science, +/obj/item/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sFE" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_volleyball) +"sGh" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"sHE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"sIM" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"sLi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"sMD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"sNG" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/bamboo, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"sNV" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"sNY" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"sOc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sOq" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"sPi" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"sPB" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"sRb" = ( +/obj/structure/table/standard, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"sWp" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_1_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"sXo" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sZJ" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"sZW" = ( +/obj/structure/hygiene/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 0 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"tbj" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 4; + icon_state = "burst_r"; + name = "propulsion" + }, +/turf/space, +/area/shuttle/merchant/home) +"tci" = ( +/obj/machinery/pipedispenser/disposal, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"tcR" = ( +/obj/structure/closet/secure_closet/medical1{ + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"tda" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"teP" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"tfy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/escape_shuttle) +"thF" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"tjl" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/obj/item/material/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"tkb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tkd" = ( +/obj/machinery/power/solar_control/autostart, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tkw" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/ert, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"tlq" = ( +/obj/item/device/radio/intercom/syndicate{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"tlF" = ( +/obj/item/beach_ball/holoball, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"tlL" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"tna" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tnX" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"too" = ( +/obj/machinery/camera/network/ert{ + c_tag = "Assault Armor North" + }, +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"tpD" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/creed) +"tqk" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"trb" = ( +/obj/structure/table/woodentable, +/obj/item/material/ashtray/bronze, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/clothing/mask/smokable/cigarette/cigar/havana, +/turf/simulated/floor/wood, +/area/merchant_station) +"trC" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_station_exterior"; + locked = 1; + name = "Station Exterior" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"trW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"tsV" = ( +/obj/item/storage/fancy/cigarettes, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tta" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1; + start_pressure = 740.5 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"ttI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"tuU" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"twi" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/engivend{ + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"twO" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"twS" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"twU" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"txp" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"tyW" = ( +/obj/random/clipboard, +/obj/item/pen, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"tyX" = ( +/obj/machinery/papershredder, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"tzG" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"tCi" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"tCu" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/shoes/sandal/xeno/caligae/black, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"tCA" = ( +/turf/simulated/wall/r_titanium, +/area/syndicate_elite_squad) +"tCD" = ( +/obj/machinery/suit_storage_unit/standard_unit{ + req_access = list("ACCESS_MERCHANT") + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tGq" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tGv" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand, +/area/beach) +"tHr" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"tIf" = ( +/turf/unsimulated/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/centcom/holding) +"tIE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/holodeck/source_volleyball) +"tIX" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tJk" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/random/handgun, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tKk" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "escape_pod_3_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"tLD" = ( +/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/merchant_station) +"tLS" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"tML" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"tMS" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"tNc" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"tPy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tPU" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"tQJ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/silver{ + amount = 50 + }, +/obj/item/stack/material/silver{ + amount = 50 + }, +/obj/item/stack/material/silver{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"tSC" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Medical"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"tSQ" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"tVs" = ( +/obj/structure/table/reinforced, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"tWl" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"tYg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/merchant_station) +"tYy" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"tYI" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"tZT" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "cargo_bay_centcom"; + pixel_x = 25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"uaI" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"uba" = ( +/obj/structure/table/holo_woodentable, +/obj/item/device/synthesized_instrument/violin{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"uch" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ued" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ueG" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/supply_shuttle) +"ugD" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"ujv" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_cafe) +"ukd" = ( +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"ukt" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"ukZ" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/under/rank/psych/turtleneck{ + desc = "A turqouise turtleneck and a pair of dark blue slacks."; + name = "turtleneck" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ulC" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"uni" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"uol" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"upA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"upE" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"uqz" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"usu" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8; + icon_state = "corner_white" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"usQ" = ( +/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/airless, +/area/merchant_station) +"uug" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uwl" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"uzr" = ( +/turf/unsimulated/beach/sand, +/area/beach) +"uBw" = ( +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"uBB" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"uBO" = ( +/obj/machinery/light, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"uDO" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + name = "Warehouse" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/merchant_station) +"uEq" = ( +/obj/structure/window/reinforced/crescent, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"uFd" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"uGd" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"uGA" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/holodeck/source_temple) +"uGH" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"uGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"uHy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"uJa" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uKR" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + opacity = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "CREED"; + name = "Ready Room"; + p_open = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"uOk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"uOm" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"uOv" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/specops) +"uOw" = ( +/obj/machinery/vending/hydronutrients, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"uPs" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/stack/material/plastic{ + amount = 10 + }, +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/item/device/paint_sprayer, +/turf/simulated/floor/plating, +/area/merchant_station) +"uSn" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"uSq" = ( +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/living) +"uTO" = ( +/obj/structure/hygiene/shower{ + dir = 4; + icon_state = "shower" + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"uTS" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"uUG" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uUY" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/centcom/evac) +"uVB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"uWI" = ( +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/taperoll/engineering, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uXg" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/control) +"uXI" = ( +/obj/machinery/vending/props, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"vay" = ( +/obj/structure/closet/emcloset, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"vaM" = ( +/obj/machinery/button/blast_door{ + id_tag = "NTrasen"; + name = "Hull Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"vbU" = ( +/obj/effect/landmark{ + name = "prisonwarp" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"vcd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vcu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vcE" = ( +/obj/machinery/vending/medical, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"vdR" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand, +/area/beach) +"vev" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"vgC" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"vhs" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"vhD" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"vkh" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/suppy) +"vlh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"vlU" = ( +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"vlY" = ( +/obj/item/storage/secure/safe{ + pixel_x = -25 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet, +/area/merchant_station) +"vnH" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 10; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"voL" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_plaza) +"voN" = ( +/obj/machinery/jukebox, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"vrz" = ( +/turf/unsimulated/wall, +/area/centcom/specops) +"vrE" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"vvL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"vwu" = ( +/obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"vyD" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/item/tank/emergency/oxygen/double, +/turf/simulated/floor/plating, +/area/merchant_station) +"vAy" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_pod_3_recovery"; + pixel_x = 25; + pixel_y = -25; + req_access = list(list("ACCESS_EXTERNAL")); + tag_door = "escape_pod_3_recovery_hatch" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor2" + }, +/area/centcom/evac) +"vCX" = ( +/obj/structure/curtain{ + color = "#cd6889" + }, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/holodeck/source_temple) +"vET" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"vFa" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"vFh" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_centcom_dock_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"vHx" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"vHR" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"vIc" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"vIB" = ( +/obj/structure/closet, +/turf/unsimulated/beach/sand, +/area/beach) +"vIY" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/holodeck/source_volleyball) +"vKJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vOk" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/control) +"vOv" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 4; + icon_state = "beachcorner" + }, +/area/holodeck/source_beach) +"vPV" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"vQt" = ( +/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/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"vQP" = ( +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"vSb" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor4" + }, +/area/centcom/evac) +"vTe" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"vTI" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/turf/unsimulated/beach/sand, +/area/beach) +"vWS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"vXR" = ( +/obj/machinery/newscaster{ + pixel_y = -27 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"vYS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vZQ" = ( +/obj/machinery/door/airlock{ + name = "Room B" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"vZY" = ( +/obj/machinery/libraryscanner, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"waI" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"waQ" = ( +/turf/unsimulated/wall, +/area/centcom/creed) +"wbQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "merchantbase"; + name = "Merchant Loading Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wcr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wcA" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"wdz" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"wfJ" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"whq" = ( +/turf/unsimulated/beach/sand{ + icon_state = "seashallow" + }, +/area/centcom/holding) +"whs" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"whJ" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"wji" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"wjz" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"wjF" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/ivbag/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"wjR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wkk" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"wkp" = ( +/turf/unsimulated/wall, +/area/tdome) +"wkD" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"wlb" = ( +/obj/machinery/bookbinder, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"wll" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"wlN" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = list("ACCESS_BAR") + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"wnb" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"wnt" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"wnu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"wnA" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"woS" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 8; + icon_state = "beach" + }, +/area/holodeck/source_beach) +"wpt" = ( +/obj/machinery/microwave, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wrQ" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"wtF" = ( +/obj/structure/bookcase, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wtJ" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"wtZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"wuA" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"wuI" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"wwt" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space) +"wwH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"wwP" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/wall, +/area/space) +"wxr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"wxs" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"wxZ" = ( +/obj/effect/floor_decal/beach/corner, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"wya" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"wyn" = ( +/turf/simulated/mineral, +/area/space) +"wyF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"wyG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/deck/cards, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wBk" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"wBC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"wET" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"wGb" = ( +/turf/simulated/floor/tiled, +/area/merchant_station) +"wGW" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wId" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"wJf" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"wKi" = ( +/obj/machinery/vending/cigarette{ + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wKR" = ( +/obj/machinery/door/airlock/glass{ + name = "Lounge" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"wLa" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"wLb" = ( +/obj/machinery/computer/shuttle{ + dir = 1; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"wLv" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"wLE" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wNb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + icon_state = "heater" + }, +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/shuttle/merchant/home) +"wNr" = ( +/obj/item/storage/mirror{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"wNx" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"wOn" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"wOJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wOU" = ( +/obj/machinery/button/blast_door{ + dir = 1; + icon_state = "computer"; + id_tag = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"wPm" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_cafe) +"wPC" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"wQR" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit" + }, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"wRi" = ( +/obj/item/handcuffs/cable/tape, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"wRq" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"wRr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"wUR" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"wUU" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"wWt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"wXq" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"wYp" = ( +/obj/effect/landmark{ + name = "Syndicate-Commando" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_elite_squad) +"xaa" = ( +/obj/effect/floor_decal/corner/lime, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"xcR" = ( +/turf/unsimulated/floor{ + dir = 9; + icon_state = "vault" + }, +/area/centcom/ferry) +"xdI" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/holodeck/source_temple) +"xeu" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"xeJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"xeT" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"xeX" = ( +/turf/simulated/wall/r_titanium, +/area/shuttle/transport1/centcom) +"xfb" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"xfW" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xgh" = ( +/obj/machinery/vending/engineering, +/turf/unsimulated/floor/plating, +/area/centcom/evac) +"xjt" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"xjJ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"xmi" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xmB" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random/powercell, +/obj/item/stock_parts/computer/hard_drive/portable/merchant, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xmP" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"xnW" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xog" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"xoE" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"xoF" = ( +/obj/effect/floor_decal/beach{ + dir = 1; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_volleyball) +"xrj" = ( +/obj/structure/bed/chair/office/comfy/black{ + dir = 4; + icon_state = "comfyofficechair_preview" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"xsg" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"xsU" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/transport1/centcom) +"xte" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"xvw" = ( +/obj/effect/floor_decal/corner/lime/three_quarters, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"xvS" = ( +/obj/machinery/porta_turret/crescent, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xwb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor" + }, +/area/centcom/evac) +"xwM" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"xxa" = ( +/obj/structure/table/holo_woodentable, +/obj/item/tray{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_cafe) +"xxj" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"xyG" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/shuttle.dmi'; + icon_state = "floor3" + }, +/area/centcom/evac) +"xyT" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"xzR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"xzU" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"xBU" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/handcuffs, +/obj/item/storage/pill_bottle/dice, +/obj/item/deck/cards, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"xCw" = ( +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"xCY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/concrete, +/area/holodeck/source_plaza) +"xDg" = ( +/obj/structure/iv_drip, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"xDh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xDr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Bridge"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xDI" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + glass = 1380; + icon_state = "closed"; + id_tag = "centcom_shuttle_bay_door"; + locked = 1; + name = "Transport Airlock" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/control) +"xEe" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt2" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"xFr" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"xGw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_volleyball) +"xHR" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xIK" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"xIV" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"xJM" = ( +/obj/structure/window/shuttle{ + icon_state = "window1" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/centcom/evac) +"xKm" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"xMR" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xOl" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"xPt" = ( +/obj/machinery/optable, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"xPJ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"xQD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xSj" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"xSD" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"xST" = ( +/obj/structure/table/rack, +/obj/item/rig/military/equipped, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xUF" = ( +/obj/effect/decal/cleanable/ash, +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"xUI" = ( +/obj/machinery/r_n_d/server/centcom, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xVB" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/turf/space, +/area/merchant_station) +"xVJ" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"xWm" = ( +/turf/space, +/area/centcom/ferry) +"xXd" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"xXq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xYo" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"xZq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xZY" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 25; + pixel_y = 0; + tag_door = "admin_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom) +"yaK" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"ybA" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/circuitboard/smes, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"ybO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"ybY" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"yda" = ( +/obj/machinery/atmospherics/valve, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"ydZ" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled, +/area/merchant_station) +"yeN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"yeU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"yfR" = ( +/obj/machinery/computer/shuttle_control{ + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Centcom" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"yfY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"yhn" = ( +/turf/unsimulated/beach/sand{ + density = 1; + opacity = 1 + }, +/area/beach) +"yho" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + id_tag = "QMLoad2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"yiv" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"yiF" = ( +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"yiJ" = ( +/obj/structure/bed/chair/shuttle/black, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "specops_shuttle_port"; + name = "port docking hatch controller"; + pixel_x = 0; + pixel_y = 24; + tag_door = "specops_shuttle_port_hatch" + }, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"yjl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"ykt" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + name = "exterior access button"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + name = "interior access button"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 2; + id_tag = "merchant_ship_vent" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_ship_sensor"; + pixel_x = 28; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"ykE" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 4; + icon_state = "corner_white" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"ylQ" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"ylZ" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) + +(1,1,1) = {" +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(2,1,1) = {" +wyn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +ecn +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +bhY +bhY +iNr +lzK +uOw +vcE +rOV +dac +fDo +iHT +iRS +izn +hFA +oeC +uXI +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(3,1,1) = {" +wyn +yhn +uzr +vdR +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +bhY +fkv +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +vXR +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(4,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +oww +cfX +aAl +aAl +aAl +aAl +aAl +obO +aAl +aAl +aAl +aAl +aAl +cfX +iIM +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(5,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +rYW +tGv +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +iIM +cfX +aAl +eBW +eBW +gox +eBW +eBW +eBW +gox +eBW +eBW +aAl +cfX +kvN +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(6,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +rYW +uzr +fnD +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +hPf +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +kaj +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(7,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +tGv +uzr +czX +czX +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +kaj +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +qJm +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(8,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +rYW +czX +vTI +rco +czX +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qJm +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +hPf +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(9,1,1) = {" +wyn +yhn +vIB +uzr +uzr +uzr +uzr +czX +nMX +phv +czX +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +hPf +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +gFt +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(10,1,1) = {" +wyn +yhn +vIB +uzr +uzr +uzr +uzr +uzr +czX +czX +uzr +uzr +uzr +swl +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +gFt +cfX +aAl +spx +eBW +eBW +eBW +eBW +eBW +eBW +eBW +bVS +aAl +cfX +jrv +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(11,1,1) = {" +wyn +yhn +vIB +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +jrv +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +aPe +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(12,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +swl +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +aPe +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +gAU +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(13,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +tGv +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +gAU +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +lsZ +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(14,1,1) = {" +wyn +yhn +vIB +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +swl +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +lsZ +cfX +obO +eBW +eBW +eBW +eBW +nDg +eBW +eBW +eBW +eBW +obO +cfX +hEf +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(15,1,1) = {" +wyn +yhn +vIB +uzr +uzr +uzr +uzr +uzr +uzr +fKT +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +hEf +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +xPJ +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(16,1,1) = {" +wyn +yhn +vIB +uzr +rYW +vdR +uzr +uzr +uzr +uzr +uzr +uzr +uzr +nUN +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +xPJ +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +swv +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(17,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +too +bmx +vrz +cEK +bmx +cEK +bmx +cEK +hIU +vrz +vrz +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +swv +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +gYp +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(18,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +cCk +cCk +oTf +cCk +cCk +cCk +cCk +cCk +cCk +cCk +cCk +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +gYp +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +tQJ +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(19,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +vdR +rYW +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +kNY +cCk +vrz +cCk +cCk +cCk +cCk +cCk +cCk +cCk +cCk +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +tQJ +cfX +aAl +spx +eBW +eBW +eBW +eBW +eBW +eBW +eBW +bVS +aAl +cfX +aEU +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(20,1,1) = {" +wyn +yhn +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +oxQ +uug +vrz +aRN +aRN +lnW +aRN +aRN +oxQ +oxQ +uug +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +nKy +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +kFG +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(21,1,1) = {" +wyn +yhn +uzr +gQL +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +uzr +yhn +hVo +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +ogE +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +vrz +vrz +oTf +vrz +vrz +vrz +vrz +dTJ +dTJ +vrz +rMv +rMv +vrz +vrz +vrz +vrz +vrz +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +tyX +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +jWm +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(22,1,1) = {" +wyn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +yhn +ecn +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +pmY +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +mNR +nnD +kSS +aAR +kSS +fUv +dTJ +clD +xST +oFU +kSS +kSS +dTJ +jcQ +kSS +kSS +hbQ +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +mXi +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +wlb +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(23,1,1) = {" +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +wyn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +vrz +vrz +kSS +kSS +kSS +sse +dTJ +kky +kSS +kSS +kSS +kSS +dTJ +ued +kSS +kSS +hbQ +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qgJ +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +bvj +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(24,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +rRg +kSS +kSS +kSS +kSS +sXo +dTJ +cjj +kSS +kSS +kSS +kSS +dTJ +oTl +kSS +kSS +fnf +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +lBP +cfX +aAl +eBW +eBW +fNw +eBW +eBW +eBW +fNw +eBW +eBW +aAl +cfX +vZY +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(25,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +rcO +kSS +kSS +kSS +kSS +cJS +dTJ +tkw +kSS +kSS +kSS +kSS +dTJ +qpi +kSS +kSS +hTb +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +fpu +cfX +aAl +aAl +aAl +aAl +aAl +obO +aAl +aAl +aAl +aAl +aAl +cfX +lBP +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(26,1,1) = {" +aab +aab +aab +aab +eGn +eGn +eGn +eGn +eGn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aad +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +vrz +bAS +kSS +kSS +kSS +kSS +etZ +dTJ +sDC +bou +kSS +kSS +kSS +dTJ +eqZ +kSS +kSS +gex +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +fpu +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(27,1,1) = {" +aab +aab +aab +aab +mMq +nEj +sDo +iIR +hnq +eGn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +vrz +owX +kSS +kSS +kSS +kSS +wUR +vrz +dTJ +dTJ +vrz +rMv +rMv +vrz +obn +kSS +kSS +lTJ +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +cfX +cfX +rqT +iad +iad +gVa +iuw +uGd +uGd +uGd +dzu +hOo +ukd +cfX +oww +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(28,1,1) = {" +aab +aab +aab +aab +aRT +nEj +mky +iIR +iIR +eGn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +wwt +aDK +sfS +aab +aab +aab +aab +aab +aab +aab +aab +aab +sfS +wwt +aDK +aDK +wwt +aDK +aDK +aDK +aDK +aDK +aab +fTr +aab +aab +aab +aab +aad +ahG +ahG +ahG +ahG +qja +ceE +pvZ +qja +ahG +qja +ceE +pvZ +qja +ahG +ahG +ahG +ahG +vrz +gDI +kSS +kSS +kSS +kSS +kSS +kSS +kSS +kSS +oUB +kSS +kSS +ezY +kSS +kSS +kSS +cJS +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +aAl +aAl +aAl +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(29,1,1) = {" +aab +aab +aab +aab +hxw +nEj +hnq +eGn +aBI +eGn +eGn +eGn +qMD +eGn +eGn +eGn +uUY +eGn +eGn +eGn +eGn +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +aab +ach +ach +aab +aab +lzm +iSe +iSe +iSe +lzm +aab +aab +aab +aab +ach +aab +aab +aab +aab +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +ahG +ahG +qja +qja +oCH +oCH +qja +qja +qja +oCH +oCH +qja +qja +ahG +ahG +ahG +vrz +ntZ +kSS +wLa +kSS +kSS +kSS +kSS +kSS +kSS +oUB +kSS +kSS +ezY +kSS +kSS +kSS +rDI +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +wkp +wkp +wkp +wkp +wkp +wkp +wkp +gkM +gkM +gkM +gkM +gkM +gkM +gkM +gkM +gkM +gtc +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(30,1,1) = {" +aab +aab +aab +aab +eGn +eGn +eGn +qtQ +cER +szy +ece +dNk +cAI +vay +eGn +mxw +csc +nMi +tqk +nMi +eGn +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +amB +ach +ach +ach +aab +aab +aab +sos +qkH +ezr +lzq +gal +aab +aab +aab +aab +ach +aab +pga +aab +ach +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +ahG +qja +qja +qja +ctk +aZp +wKi +qja +owq +oVr +sdh +qja +qja +qja +ahG +ahG +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +dTJ +dTJ +vrz +nNk +hEG +vrz +dTJ +dTJ +vrz +vrz +vrz +bMd +eNN +eNN +eNN +rfY +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +vTe +wkp +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(31,1,1) = {" +aab +aab +aab +aab +aab +eGn +vay +iIE +cER +iIE +jdP +iIE +cER +cNV +eGn +mxw +csc +csc +csc +csc +eGn +eGn +eGn +eGn +eGn +aab +aab +amB +amB +amB +amB +amB +amB +amB +ach +aab +aab +ach +ach +aab +aab +sos +fMA +otZ +myL +gal +aab +aab +aab +aab +gbi +gbi +gAq +gbi +gbi +gbi +gbi +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +qja +oaw +rVA +rie +rie +uBO +qja +owq +owq +vhs +xPt +sjE +bjG +qja +ahG +vrz +rvu +jZW +vrz +mwt +bCW +xfW +qyJ +kSS +kSS +rko +kSS +kSS +dZd +bnl +syy +skB +efg +vrz +quS +ahF +ahF +ahF +quS +aab +aab +aab +aab +aab +aab +aab +aab +mkl +rFn +njh +njh +njh +njh +pIt +adP +njh +iel +njh +nBZ +shj +aRl +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +nBg +nBg +nBg +nBg +nBg +avQ +twS +avQ +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(32,1,1) = {" +aab +aab +aab +aab +aab +sWp +lCg +cER +cER +cER +cER +cER +cER +cER +eGn +xyG +csc +csc +csc +csc +eGn +hSg +dly +cGV +wcA +aab +aab +amB +amB +amB +amB +amB +amB +seD +jVU +jVU +jVU +jVU +seD +non +aab +sos +aSO +soU +cLk +gal +aab +aab +aab +hKJ +usQ +usQ +lLb +uGL +uGL +uGL +uGL +grR +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +juO +rie +rie +rie +rie +vET +qja +cPL +owq +owq +owq +owq +pOK +qja +ahG +vrz +rMw +rMw +vrz +kSS +kSS +kSS +kSS +kSS +kSS +rko +kSS +kSS +kSS +kSS +kSS +kSS +jcL +vrz +dhf +qAW +sdG +swW +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +cWC +njh +nBZ +efX +njh +njh +nBZ +dWY +njh +njh +shj +tIf +aRl +avQ +wkp +hAQ +hAQ +jRy +jRy +wkp +wkp +wkp +nIB +nIB +nIB +nIB +nIB +nIB +wkp +wkp +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(33,1,1) = {" +aab +aab +aab +aab +aab +eGn +nvs +iIE +cER +iIE +ihc +ihc +iIE +cER +eGn +lPH +xJM +ihN +lPH +xJM +eGn +wWt +iIE +iTq +wcA +aab +aab +amB +amB +amB +amB +seD +seD +seD +waI +qmm +mKU +mQc +jVU +aab +aab +lzm +nqZ +oEs +ftO +lzm +aab +aab +aab +aab +aab +ach +gAq +aab +aab +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +flC +iet +asX +flC +rie +ppg +qja +owq +owq +owq +owq +owq +aDB +qja +ahG +vrz +kSS +kSS +kSS +kSS +kSS +kSS +kSS +kSS +dlQ +vrz +gAj +max +max +max +max +kSS +xXq +vrz +dhf +cgV +aAS +qLt +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +cWC +njh +nBZ +nBZ +njh +njh +nBZ +rcG +njh +shj +tIf +whq +aRl +avQ +wkp +hBn +hBn +hBn +kSw +wkp +lSf +qBg +nKw +nKw +nKw +nKw +nKw +nKw +uFd +xeT +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(34,1,1) = {" +aab +aab +aab +aab +aab +eGn +uOm +jdP +cER +nxv +ece +ece +xwb +cER +cER +cER +cER +cER +cER +cER +hOE +cER +nxv +wLb +wcA +aab +aab +amB +amB +amB +amB +seD +dBB +dBB +pTd +wGb +wLE +tJk +jVU +aab +lzm +lzm +lzm +wQR +lzm +lzm +lzm +aab +aab +aab +gbi +gbi +gAq +gbi +gbi +gbi +gbi +ach +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +flC +wyG +tsV +flC +rie +wpt +qja +pMB +owq +owq +qBa +sNV +jAX +qja +ahG +vrz +hdc +kSS +kSS +kSS +kSS +kSS +kSS +kSS +cJS +vrz +rnP +rqG +had +tMS +iXm +kSS +max +dTJ +dhf +yiJ +aAS +oUW +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +cWC +njh +nBZ +njh +nBZ +jKx +nBZ +nBZ +shj +tIf +whq +whq +aRl +avQ +wkp +hBn +hBn +hBn +kXc +wkp +lSf +qBg +nKw +oNm +nKw +nKw +oNm +nKw +uFd +xeT +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(35,1,1) = {" +aab +aab +aab +aab +aab +eGn +gLJ +iIE +cER +nxv +ece +ece +xwb +cER +iIE +iIE +vSb +cWg +rLt +oPq +eGn +hJX +iIE +tyW +wcA +aab +aab +amB +amB +amB +amB +seD +nIC +yjl +gvu +qrK +sOc +stt +jVU +aab +lzm +bTF +lSB +wId +sqz +dEC +lzm +aab +aab +hKJ +usQ +usQ +lLb +uGL +uGL +uGL +uGL +grR +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +qja +qja +qja +qja +nGF +qja +qja +qja +nGF +qja +qja +qja +qja +qja +ahG +vrz +cCk +kSS +kSS +uJa +ybA +vQt +ofb +uWI +etZ +vrz +fmn +rqG +tMS +joL +iXm +kSS +kSS +iRk +skA +aAS +aAS +jeF +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +psC +njh +iel +njh +xwM +nBZ +nBZ +shj +tIf +whq +whq +whq +aRl +avQ +gIm +hBn +hBn +hBn +kXc +wkp +lSf +qBg +nKw +nKw +oVC +nKw +nKw +nKw +uFd +xeT +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(36,1,1) = {" +aab +aab +aab +aab +aab +mwH +sAK +cER +cER +iIE +wWt +wWt +iIE +cER +cER +cER +rLt +dOo +fjE +fjE +eGn +iIE +pXd +mKy +wcA +aab +aab +amB +amB +amB +amB +seD +eUy +xjt +hwN +jCz +rFf +hAX +jVU +lzm +lzm +bTF +wId +wId +wId +uaI +lzm +lzm +aab +aab +ach +aab +gAq +ach +aab +ach +ach +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +fqj +rie +fbA +rie +rie +rie +fbA +rie +rie +rie +fbA +qnk +cRq +qnk +ahG +vrz +cCk +kSS +kSS +uJa +vrz +vrz +vrz +dTJ +dTJ +vrz +fmn +rqG +uqz +tVs +iXm +kSS +kSS +vFh +skA +aAS +aAS +jeF +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +psC +nBZ +njh +njh +njh +nBZ +oXe +rgK +whq +whq +whq +whq +aRl +avQ +wkp +hBn +hBn +hBn +hBn +wkp +lSf +qBg +nKw +oNm +nKw +nKw +oNm +nKw +uFd +xeT +wkp +avQ +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(37,1,1) = {" +aab +aab +aab +aab +aab +eGn +vay +iIE +cER +cER +cER +cER +cER +cER +cER +cER +tlL +mmt +fjE +fjE +eGn +eGn +eGn +eGn +eGn +aab +aab +amB +amB +amB +seD +seD +seD +seD +seD +keA +oNu +seD +seD +wNb +lzm +bTF +wId +hfd +xrj +ssc +lzm +wNb +aab +aab +gbi +gbi +gAq +gbi +gbi +gbi +gbi +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +fqj +rie +rie +rie +oTO +rie +rie +rie +oTO +rie +rie +qzm +bvz +bNF +ahG +vrz +dtJ +kSS +kSS +gtb +vrz +uUG +kSS +kSS +tYI +tYI +kSS +kSS +kSS +kSS +kSS +kSS +max +dTJ +dhf +poR +aAS +oUW +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +fes +fes +aNb +fes +fes +aNb +dnP +whq +whq +whq +whq +aRl +avQ +wkp +hDq +hDq +kca +hBn +wkp +lSf +qBg +nKw +nKw +nKw +nKw +nKw +nKw +uFd +xeT +wkp +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(38,1,1) = {" +aab +aab +aab +aab +eGn +eGn +eGn +iJK +cER +mho +rYj +vay +vAy +iIE +cqP +iIE +rLt +oDZ +pWJ +mkP +eGn +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +nat +jRe +mbx +voN +qip +rRx +seD +aab +tbj +lzm +lzm +fCk +eqW +wRr +lzm +lzm +bAG +aab +hKJ +usQ +usQ +lLb +uGL +uGL +uGL +uGL +grR +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +grI +rie +rie +rie +qja +rie +pxS +rie +qja +qja +nGF +qja +qja +qja +ahG +vrz +dtJ +kSS +kSS +tci +vrz +xvS +max +max +max +max +max +max +max +kSS +kSS +max +xXq +vrz +dhf +xeJ +aAS +jeF +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +aMY +aNB +aNb +aPR +bvb +aNb +qFI +whq +whq +whq +whq +aRl +avQ +wkp +wkp +wkp +wkp +lcs +wkp +wkp +wkp +exJ +exJ +exJ +exJ +exJ +exJ +wkp +wkp +wkp +wkp +fGH +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(39,1,1) = {" +aab +aab +aab +aab +mMq +nEj +hnq +eGn +aBI +eGn +eGn +eGn +tKk +eGn +eGn +llr +eGn +eGn +eGn +eGn +eGn +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +ibR +qjx +rpv +iwz +pnr +rRx +jVU +aab +aab +sos +pyJ +kyZ +xKm +fnk +kmU +sos +aab +aab +aab +aab +ach +gAq +ach +aab +aab +ach +ach +aab +fTr +aab +aab +aab +aab +aad +ahG +qja +epF +rie +rie +tGq +qja +tna +qOO +kFc +qja +uHy +rie +fbA +bZb +qja +ahG +vrz +rTE +kSS +kSS +epB +vrz +xvS +max +max +max +max +max +max +max +kSS +kSS +max +jcL +vrz +dhf +dhf +oMy +dhf +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +gjw +aNC +aNb +aPS +byb +aNb +qFI +whq +whq +whq +whq +aRl +avQ +avQ +wkp +igT +jqP +jqP +jqP +lSj +mhI +nZT +nZT +nZT +nZT +nZT +nZT +mhI +lSj +jRE +jRE +jRE +ylZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(40,1,1) = {" +aab +aab +aab +aab +aRT +nEj +tLS +iIR +iIR +eGn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +ibR +qjx +rpv +gHg +cpS +iAg +jVU +aab +aab +sos +pyJ +xxj +oeN +qDI +sIM +sos +aab +aab +aab +aab +mAC +lSS +aab +aab +ach +ach +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +knz +epF +rie +rie +tGq +knz +eAu +eAu +eAu +knz +rUG +rie +rie +pYb +knz +ahG +vrz +rTE +kSS +kSS +epB +vrz +uUG +max +oxQ +max +oxQ +hCd +hwE +uch +kSS +kSS +skB +efg +vrz +aab +dhf +hjm +dhf +aab +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +eYX +eYX +aNb +eYX +eYX +aNb +qFI +whq +whq +whq +whq +aRl +avQ +avQ +wkp +iqx +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +jRE +ylZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(41,1,1) = {" +aab +aab +aab +aab +hxw +nEj +xgh +iIR +hnq +eGn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +sNG +qjx +pnr +pnr +pnr +lSo +jVU +aab +aab +lzm +pyJ +xxj +mNk +bil +aAH +lzm +aab +aab +ach +ach +ach +aPr +aab +ach +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +knz +knz +knz +nGF +knz +knz +ahG +ahG +ahG +knz +fxw +rie +tIX +knz +knz +ahG +waQ +waQ +waQ +waQ +waQ +waQ +dTJ +dTJ +eBZ +vrz +cwE +vrz +dTJ +mvt +eBZ +eBZ +mvt +dTJ +vrz +vrz +vrz +dTJ +dTJ +dTJ +vrz +vrz +vrz +vrz +vrz +aab +aab +aab +mkl +fkb +aNb +aNb +aPa +aNb +aNb +aNb +wkp +wkp +wkp +wkp +wkp +wkp +wkp +avQ +wkp +itR +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +jRE +ylZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(42,1,1) = {" +aab +aab +aab +aab +eGn +eGn +eGn +eGn +eGn +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +ahh +fjm +pnr +pnr +pvs +trb +jVU +aab +aab +lzm +pyJ +xxj +mNk +qDI +kmU +lzm +aab +aab +ach +seD +gpe +bQo +gpe +seD +amB +aab +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +knz +knz +fcP +rie +rie +knz +ahG +ahG +ahG +knz +ocF +rie +vev +knz +knz +ahG +waQ +wnb +dmq +bZv +ffJ +waQ +jaZ +max +max +dTJ +qNu +dTJ +xBU +oRM +kSS +kSS +max +oRg +csj +qPC +vrz +max +max +max +max +max +max +tMS +vrz +aab +aab +aab +mkl +aNb +fes +fes +aNb +fes +fes +aNb +wkp +fMq +avQ +fFh +gkM +gtc +wkp +avQ +wkp +iqx +kfk +ljR +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +mHo +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(43,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +seD +seD +seD +seD +vlU +pnr +pvs +pwh +jVU +aab +aab +lzm +aAH +aEv +mNk +qDI +sIM +lzm +aab +xVB +seD +seD +bak +iIY +tkd +seD +amB +amB +aab +aab +fTr +aab +aab +aab +aab +aad +ahG +ahG +knz +knz +rie +gCe +knz +ahG +ahG +ahG +knz +qsX +rie +knz +knz +ahG +ahG +waQ +wnb +wnb +iMs +sOq +waQ +svD +max +max +dTJ +qNu +dTJ +oRM +max +kSS +kSS +kSS +kSS +kSS +kSS +jow +max +max +max +max +max +max +tMS +vrz +aab +aab +aab +mkl +aNb +aNc +aNI +aNb +aRm +bzm +aNb +wkp +avQ +fRC +avQ +avQ +gMh +cuC +avQ +wkp +jpr +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +wOU +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(44,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +lkc +vlY +pqj +seD +eYL +pnr +cnG +tYg +jVU +aab +aab +lzm +qLM +xxj +oeN +bil +aAH +lzm +aab +ach +gpe +uPs +cYW +scR +iVD +seD +seD +amB +amB +eyl +fTr +aab +aab +aab +aab +aad +ahG +ahG +knz +knz +oTO +wtF +knz +ahG +ahG +ahG +knz +lAl +oTO +knz +knz +ahG +ahG +waQ +wnb +ghY +iEz +vaM +waQ +clW +max +max +cpg +qNu +cpg +max +max +kSS +kSS +kSS +kSS +kSS +kSS +jow +max +max +max +max +max +max +max +vrz +aab +aab +aab +mkl +aNb +aNh +aNJ +aNb +aNc +bMb +aNb +fFh +fFh +fUy +fFh +avQ +gMh +wkp +avQ +wkp +jqP +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +aRC +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(45,1,1) = {" +aab +aab +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +prH +qjx +qjx +mCw +pnr +afI +wET +pye +seD +non +aab +lzm +fju +xxj +oeN +qDI +kmU +lzm +ach +ach +gpe +xnW +dEm +iLo +mOM +bRZ +seD +seD +amB +eyl +eyl +aab +aab +aab +aab +aad +ahG +ahG +ahG +knz +knz +knz +knz +ahG +ahG +ahG +knz +knz +knz +knz +ahG +ahG +ahG +waQ +wnb +wnb +wnb +wnb +waQ +max +max +svD +dTJ +qNu +dTJ +dkl +max +mtm +mtm +mtm +mtm +mtm +mtm +vrz +max +max +max +jpX +jpX +jpX +jpX +mkl +aab +aab +aab +mkl +aNb +eYX +eYX +aNb +eYX +eYX +aNb +fFh +avQ +avQ +avQ +avQ +gMh +wkp +wkp +wkp +jqP +jqP +jqP +jqP +lSj +mXz +mXz +mXz +pfy +pQI +rvN +mXz +mXz +xfb +lQQ +jRE +jRE +dzi +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(46,1,1) = {" +aab +aab +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +jsi +kFu +pgA +seD +pnr +nnI +nnI +qoA +seD +hMM +aab +lzm +jMI +ekb +upA +qDI +ipJ +lzm +hMM +gpe +gpe +twi +jjg +amO +yfY +tML +ybO +seD +amB +eyl +eyl +aab +aab +aab +aab +aad +ahG +ahG +ahG +ahG +ahG +ahG +xZY +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +waQ +wnb +ieX +wnb +wnb +waQ +max +max +svD +dTJ +qNu +dTJ +feP +max +pYY +pYY +pYY +pYY +pYY +pYY +vrz +max +max +max +jpX +jpX +jpX +jpX +mkl +aab +aab +aab +mkl +aNb +aNb +aNb +aNb +aNb +aNb +aNb +hsG +avQ +avQ +avQ +avQ +avQ +avQ +avQ +hYN +jqP +jqP +jqP +jqP +lSj +mXz +mXz +mXz +pra +pQZ +smK +tda +tda +xSD +yda +pwa +jRE +iIb +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(47,1,1) = {" +aab +aab +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +seD +seD +seD +seD +pnr +wKR +wGb +qAj +nUE +jVU +aab +lzm +lzm +oYo +ibS +oYo +lzm +lzm +seD +mGE +exW +bMD +wGb +vcd +eKq +dzy +ehC +seD +amB +eyl +eyl +aab +aab +aab +aab +aad +aad +aad +aad +pZq +pZq +pZq +pZq +mkd +mkd +pZq +pZq +pZq +pZq +pZq +pZq +pZq +pZq +waQ +tpD +eVH +tpD +waQ +waQ +max +max +vrz +vrz +uKR +vrz +vrz +eBZ +dTJ +dTJ +vrz +vrz +vrz +vrz +vrz +pUu +eBZ +vrz +mkl +jpX +xcR +jpX +mkl +aab +aab +aab +mkl +aNb +aNb +aNb +aNb +aNb +aNb +aNb +fFh +avQ +avQ +avQ +avQ +gWz +wkp +wkp +wkp +jqP +jqP +jqP +jqP +lSj +mXz +mXz +mXz +pfy +pQI +fHG +mXz +mXz +xfb +jRE +gXh +jRE +iIb +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(48,1,1) = {" +aab +aab +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +tCA +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +seD +qot +pvv +seD +vZQ +seD +siP +wGb +bHQ +jVU +aab +aab +lzm +wll +rba +ldj +lzm +aab +seD +tnX +vYS +gKP +wGb +gin +xzR +iZt +byM +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +pZq +uGH +wLv +pZq +kTl +kTl +pZq +uGH +wLv +pZq +eBJ +nWv +pZq +uSq +uSq +owu +pcl +owu +xXq +max +max +max +vrz +max +qNu +max +vrz +max +max +sFu +vrz +aGF +aGF +aGF +aKb +aGF +aGF +aGF +mkl +fYU +bSy +fYU +mkl +mkl +mkl +mkl +mkl +aNb +aNb +cnP +bgJ +tCu +aNn +aNn +fFh +fFh +fUy +fFh +avQ +gWz +wkp +avQ +wkp +jqP +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +qgz +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(49,1,1) = {" +aab +aab +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +qxN +aab +tCA +rEQ +mRx +vbU +rEQ +mRx +vbU +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +seD +kPL +aCU +aDp +aCU +seD +dHN +wGb +bHQ +jVU +aab +aab +lzm +ykt +hTI +drV +lzm +aab +seD +xmB +kcv +xQD +gAN +wyF +cMT +pYL +kqd +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +pZq +nXC +nXC +pZq +kTl +kTl +pZq +nXC +nXC +pZq +iQg +iQg +jYN +uSq +uSq +owu +pcl +owu +xXq +max +max +max +vrz +max +qNu +max +vrz +dlQ +max +mNe +vrz +aGG +aHz +aHb +aGF +aKX +aKX +aKX +bpJ +oqR +jpX +lVX +mkl +wtJ +mCs +wBC +mBV +aNb +aNb +cnP +bgJ +aNn +aNn +aNn +wkp +avQ +ghj +avQ +avQ +gWz +cuC +avQ +wkp +jpr +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +lPd +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(50,1,1) = {" +aab +aab +aab +tCA +tCA +tCA +tCA +tCA +oVW +oVW +tCA +tCA +tCA +tCA +rEQ +xeu +lJU +rEQ +xeu +xeu +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +seD +cwp +vFa +bBi +cZm +seD +loR +wGb +bHQ +jVU +aab +aab +lzm +lzm +hbv +lzm +lzm +aab +seD +tCD +dih +wOJ +bpF +rJI +nRH +jim +tta +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +pZq +cTa +nXC +pZq +kTl +kTl +pZq +cTa +nXC +pZq +kAO +iQg +jYN +uSq +uSq +owu +pcl +owu +xXq +max +osh +jyq +vrz +max +qNu +max +vrz +jHG +pbB +shE +vrz +aHb +aHz +aHb +aGF +aGF +aGF +aGF +bpJ +bjr +jpX +gqk +mkl +dnl +xOl +gid +tjl +aNb +aNb +cnP +bgJ +aNn +aNn +wlN +wkp +fMq +avQ +fFh +wjz +haH +wkp +avQ +wkp +jqP +kfk +ljR +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +sRb +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(51,1,1) = {" +aab +aab +aab +tCA +dAX +tCA +iDR +pkz +pkz +pkz +pkz +pkz +pkz +tCA +rEQ +rEQ +rEQ +rEQ +rEQ +oyT +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +seD +seD +seD +seD +seD +seD +lTr +vcu +bHQ +jVU +jVU +aab +seD +seD +trC +seD +seD +mWi +seD +seD +kdF +seD +rLz +vyD +wkD +wkD +seD +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +pZq +pZq +sBs +pZq +sZJ +sZJ +pZq +pZq +sBs +pZq +pZq +iQg +pZq +uSq +fBv +owu +bjS +owu +vrz +vrz +vrz +vrz +vrz +pUu +uKR +uOv +vrz +vrz +vrz +vrz +vrz +aGF +aGF +aGF +aGF +aKX +aKX +aKX +mkl +mkl +mkl +mkl +mkl +mrU +oxL +rCy +tjl +aNb +aNb +cnP +bgJ +aNn +aNn +aNk +wkp +wkp +wkp +wkp +wkp +wkp +wkp +avQ +wkp +jpr +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +kkN +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(52,1,1) = {" +aab +aab +aab +tCA +ebb +tCA +tlq +pkz +pkz +pkz +pkz +pkz +pkz +tCA +rEQ +mRx +vbU +rEQ +mRx +vbU +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +uTO +sZW +seD +seD +hVv +bHQ +wGb +jVU +aab +nnI +oGr +jjg +jjg +nnI +aab +nnI +wGb +bHQ +seD +seD +seD +seD +seD +seD +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +luh +luh +gWR +gWR +gWR +gWR +gWR +pZq +wNr +ylQ +pZq +uSq +fBv +sGh +kAQ +kAQ +cHL +pop +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +fBv +aHc +aHc +aHc +aKd +aHc +aHc +aHc +mkl +xWm +xWm +xWm +mkl +aNb +aNb +aNb +aNb +aPa +aNb +cnP +bgJ +aNn +aNn +aNl +aRl +aRl +rtr +aIj +meI +etv +wkp +avQ +wkp +jqP +khR +lEJ +lQy +mgi +lTa +lTa +lTa +lTa +lTa +lTa +lTa +lTa +mgi +hMN +jLF +cIe +bDh +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(53,1,1) = {" +aab +aab +aab +tCA +tCA +tCA +wYp +wYp +wYp +pkz +wYp +wYp +wYp +tCA +rEQ +tNc +xeu +rEQ +xeu +xeu +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +xsg +kiH +fcY +jpR +wGW +bzZ +fQb +jVU +aab +nnI +jjg +gCZ +jjg +nnI +aab +nnI +wGb +wcr +seD +amB +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +qxX +gWR +gWR +gWR +gWR +gWR +gWR +pZq +ylQ +ylQ +pZq +uSq +fBv +eeP +jsc +jsc +kEh +uXg +jsc +fmF +jsc +jsc +jsc +jsc +jsc +jsc +fmF +jsc +uXg +aHe +aHF +aHF +aHF +aHF +aHF +aLv +mkl +xWm +xWm +xWm +mkl +aNb +aNb +aNb +aNb +aNb +aNb +cnP +bgJ +aNn +aNn +aNm +aRl +aRl +gAi +aIj +aIj +aIj +wkp +avQ +wkp +jHj +kuG +jqP +jqP +lSj +mhI +ofF +ofF +ofF +ofF +ofF +ofF +mhI +lSj +jRE +jRE +jRE +sDZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(54,1,1) = {" +aab +aab +aab +aab +aab +tCA +pkz +pkz +pkz +pkz +pkz +pkz +pkz +tCA +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +amB +dGB +gsd +bfj +hHa +iVg +seD +ydZ +bHQ +lJs +jVU +jVU +hMM +seD +fHw +seD +hMM +seD +seD +hjw +bHQ +seD +seD +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +wnA +wnA +gWR +gWR +wnA +wnA +gWR +vvL +ylQ +ylQ +jYN +uSq +fBv +qKr +jsc +jsc +iBu +owu +ozf +mnt +mnt +jtV +dmk +hqg +mnt +mnt +mnt +jll +iYJ +aHr +aHr +aHr +aHr +aHr +aHr +aLw +mkl +mkl +mkl +mkl +mkl +aRl +ogi +ogi +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +lld +aIj +smd +rns +wkp +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +exJ +exJ +exJ +exJ +exJ +exJ +wkp +wkp +wkp +wkp +fGH +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(55,1,1) = {" +aab +aab +aab +aab +aab +tCA +tCA +tCA +tCA +gky +tCA +tCA +tCA +tCA +rEQ +mRx +vbU +rEQ +wrQ +vbU +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +hvp +fIL +seD +jAI +seD +whJ +seD +ixA +fdV +hil +wjR +qrK +qrK +qrK +kZf +mTf +tkb +mTf +kNE +vKJ +dMC +eYF +seD +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +ksG +jHa +gWR +gWR +jHa +jHa +gWR +pZq +ylQ +ylQ +jYN +uSq +fBv +mmD +jsc +jsc +wwH +owu +cZr +owu +owu +owu +xDr +owu +owu +fBv +fBv +jgN +vOk +aHg +aHg +aHg +aHg +aKY +aKY +aLz +aRl +aMo +aMo +aMo +aMo +aKv +aHr +aHr +aKv +aMo +aMo +aMo +aRl +hPi +mrb +aIj +gsj +aRl +nWN +aIj +aIj +xDg +wkp +avQ +avQ +avQ +avQ +avQ +wkp +fis +qBg +xog +xog +xog +xog +xog +xog +uFd +sfj +wkp +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(56,1,1) = {" +aab +aab +aab +aab +aab +tCA +cix +pkz +cix +pkz +cix +pkz +cix +tCA +rEQ +lJU +xeu +rEQ +xeu +xeu +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +hvp +hvp +seD +cfA +seD +pLz +seD +kiL +nJu +wGb +tLD +wGb +srS +owm +owm +owm +lhj +wGb +wcr +eWT +pyb +seD +seD +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +mhi +dtE +gWR +gWR +mhi +gaH +gWR +pZq +mLL +guf +jYN +uSq +fBv +qxw +jsc +jsc +xUI +owu +cZr +owu +kBb +mrB +jsc +nZW +xHR +fBv +fBv +jgN +fBv +aRl +aRl +aRl +aRl +aKd +aKd +aRl +aRl +aKv +aKv +aKv +aKv +aKv +fil +fil +aKv +aKv +aKv +aKv +aRl +hPi +knE +aIj +aIj +aRl +kRQ +aIj +iwZ +wjF +wkp +wkp +wkp +wkp +wkp +avQ +wkp +fis +qBg +xog +tWl +xog +xog +tWl +xog +uFd +sfj +wkp +avQ +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(57,1,1) = {" +aab +aab +aab +aab +aab +tCA +pkz +pkz +pkz +pkz +pkz +pkz +pkz +tCA +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +hvp +wRi +seD +cGY +cGY +cGY +cGY +cGY +kQC +qXn +tLD +wGb +seD +hcs +wbQ +hcs +seD +hjw +pmx +kYz +pXv +seD +amB +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +wnA +wnA +gWR +gWR +wnA +wnA +gWR +pZq +pZq +pZq +pZq +pZq +pZq +pZq +pZq +pZq +fBv +fBv +cZr +owu +jsc +lYN +jsc +lYN +jsc +qnT +owu +jgN +jsc +fBv +aHG +aIA +aKv +aHr +aHr +aKv +aLQ +aMp +aMp +aMp +aMp +aNo +aHr +aHr +bjb +cEu +gct +aWs +aRl +hPi +knE +aIj +aIj +aRl +aRl +mzH +aRl +aRl +aRl +aab +aab +aab +wkp +avQ +wkp +fis +qBg +xog +xog +pyW +xog +xog +xog +uFd +sfj +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(58,1,1) = {" +aab +aab +aab +aab +aab +tCA +pkz +pkz +pkz +pkz +pkz +pkz +pkz +tCA +rEQ +mRx +vbU +rEQ +mRx +vbU +rEQ +aab +aab +aab +aab +aab +aab +amB +hvp +hvp +fTH +hvp +cGY +dLx +dLx +dLx +cGY +cGY +seD +nBk +uDO +seD +xDh +cCS +fea +seD +xmi +apw +seD +seD +seD +seD +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +pZq +fHR +fHR +fHR +pOT +qEz +jsc +cZr +owu +hsz +lgH +tYy +jsc +rze +cxG +owu +jgN +jsc +uXg +aHH +aHr +aKC +aHr +aHr +aLF +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +qAN +aLJ +twO +hSG +aIj +xaa +vHx +aIj +aIj +aIj +aJu +aRl +aab +aab +aab +wkp +avQ +wkp +fis +qBg +xog +tWl +xog +xog +tWl +xog +uFd +sfj +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(59,1,1) = {" +aab +aab +aab +aab +aab +tCA +pkz +pkz +pkz +atv +pkz +pkz +pkz +tCA +rEQ +xeu +xeu +rEQ +lJU +xeu +rEQ +aab +aab +aab +aab +aab +aab +amB +vwu +hvp +hvp +hvp +cGY +dkF +ttI +oLw +hkM +cGY +fpE +mAe +jfV +tPy +cUI +dcN +yeN +pss +jfV +xZq +hjK +iTI +qBK +bZC +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +cEX +gWR +gWR +luh +jyr +luh +gWR +gWR +gWR +gWR +gWR +aeD +nFA +nFA +nFA +aeD +qEz +fmF +cZr +owu +bxn +lVy +qEz +jsc +jsc +jsc +owu +jgN +fmF +xMR +aHW +aHr +aKv +aKZ +aLh +aLG +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +bkb +aHr +aHr +aHr +hKM +aIj +aIj +xaa +vPV +hqj +vHx +aIj +aIj +aJv +aRl +aab +aab +aab +wkp +avQ +wkp +fis +qBg +xog +xog +xog +xog +xog +xog +uFd +sfj +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(60,1,1) = {" +aab +aab +aab +aab +aab +tCA +tCA +tCA +tCA +tCA +tCA +tCA +tCA +tCA +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +rEQ +aab +aab +aab +aab +aab +aab +amB +amB +vwu +hvp +amB +cGY +axK +xYo +oLw +twU +cGY +nbS +bKv +wGb +wGb +icp +cCS +fQx +wGb +wGb +bKv +wGb +sBb +sBb +wGb +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +wNx +gWR +gWR +tZT +fOf +luh +gWR +gWR +gWR +gWR +gWR +pZq +fHR +fHR +fHR +lyd +qEz +jsc +cZr +owu +lUo +bEB +kBa +bDk +rze +cxG +owu +jgN +jsc +vOk +aHX +aHr +rUq +aHr +aLm +aLI +aLR +aMq +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +hKM +aIj +aIj +ngq +xvw +kPy +kSY +aIj +aIj +uol +aRl +aab +aab +aab +wkp +avQ +wkp +wkp +wkp +nIB +nIB +nIB +nIB +nIB +nIB +wkp +wkp +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(61,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +sEn +sEn +oLw +plU +cGY +kpQ +nJu +wGb +iFm +seD +cCS +seD +jGN +wGb +nJu +ukZ +nGD +qHU +nzk +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +pZq +sZJ +sZJ +pZq +pZq +pZq +pZq +jYN +gWR +jYN +pZq +pZq +pZq +pZq +pZq +pZq +fBv +fBv +cZr +owu +jsc +nMc +jsc +nMc +jNg +xHR +owu +jgN +jsc +fBv +aIh +aIT +aKv +aLa +aLn +aKv +aIT +aIT +aIT +aLf +wxr +aHr +aHr +aPK +aLf +wxr +aHr +aHr +aRl +cus +aIj +aIj +ngq +kSY +wBk +aIj +aIj +ikv +aRl +aab +aab +aab +wkp +avQ +avQ +avQ +wkp +avn +avn +avn +avn +avn +avQ +twS +avQ +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(62,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +hZJ +iOY +oLw +oLw +dor +wGb +wGb +wGb +wGb +eXe +xEe +seD +fDu +wGb +wGb +ppj +nGD +spN +pYu +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +dyD +iQg +iQg +iQg +iQg +yiF +jYN +uSq +fBv +rst +jsc +jsc +jsc +owu +cZr +owu +kBb +ePF +jsc +cXO +lWX +fBv +fBv +jgN +fBv +fBv +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aKv +aKv +aKv +aKv +fil +fil +aKv +aKv +aKv +fil +fil +aRl +uol +uol +aIj +aIj +aIj +aIj +aIj +aIj +bYq +aRl +aab +aab +aab +wkp +wkp +wkp +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +heW +wkp +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(63,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +rzF +gge +gge +cGY +cGY +wGb +wGb +wGb +wGb +ssy +xEe +seD +psq +mvJ +pvw +wGb +jjg +jjg +dEm +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +oie +iQg +eFr +syn +iQg +iQg +jYN +uSq +fBv +byk +jsc +jsc +jsc +owu +cZr +owu +owu +owu +xDr +owu +owu +fBv +fBv +jgN +fBv +aab +aab +ach +aab +aab +aab +aab +aRl +aMo +aMo +aMo +aKv +aHr +aHr +aKv +aMo +aKv +aHr +aHr +aRl +uol +uol +eLs +aHp +aHp +aIj +aIj +eew +keE +aRl +aab +aab +aab +aab +aab +wkp +wjz +wjz +wjz +wjz +wjz +wjz +wjz +wjz +wjz +haH +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(64,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +cGY +cGY +cGY +cGY +seD +kGn +oID +oER +pCh +seD +cCS +xUF +auD +nDO +fsC +cah +oIK +dwt +eNG +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +oie +iQg +eBJ +syn +iQg +iQg +jYN +uSq +fBv +mdi +jsc +jsc +jsc +owu +qHo +kAQ +kAQ +opv +jzi +ide +kAQ +kAQ +kAQ +cTH +fBv +aab +aab +ach +aab +aab +aab +aab +aRl +aRl +aRl +aRl +aRl +aLV +aHr +aKv +aMG +aKv +aNx +aNx +aRl +aRl +aRl +aRl +aRl +pRl +mqC +mqC +mqC +aRl +aRl +aab +aab +aab +aab +aab +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(65,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +kim +iQg +eBJ +iQg +iQg +iQg +jYN +uSq +fBv +jsc +jsc +jsc +jsc +uXg +jsc +fmF +jsc +jsc +jsc +jsc +jsc +jsc +fmF +jsc +fBv +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aHr +aHr +aMA +aLV +aMA +aHr +aNL +aRl +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(66,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +pZq +pZq +pZq +iQg +gdz +apl +jYN +uSq +fBv +jsc +jsc +jsc +jsc +cCq +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +fBv +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aKv +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(67,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +hoQ +ukt +pZq +iQg +iQg +iQg +jYN +uSq +fBv +fBv +fBv +fBv +fBv +fBv +qZe +bqs +fBv +fBv +cWr +cWr +uXg +fBv +fBv +fBv +fBv +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aMb +aMs +aMs +aMH +aMs +aMs +aNM +aKv +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(68,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +teP +teP +uSn +iQg +iQg +iQg +jYN +uSq +fBv +aab +aab +bqs +qLH +qLH +qLH +kUH +fBv +rze +pcl +pcl +anT +xeX +xeX +xsU +xsU +xeX +xsU +xsU +xeX +xeX +xsU +xeX +lEy +aab +aab +aab +aRl +aMd +aMt +aMC +aMJ +aMW +aMt +aNN +aRl +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(69,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +gRU +vgC +pZq +eBJ +eBJ +goj +pZq +pZq +fBv +aab +aab +bqs +cjU +rFu +qLH +tcR +fBv +rze +pcl +iIK +owu +xeX +vWS +yeU +yeU +vWS +yeU +yeU +vWS +xeX +yfR +qhv +xeX +xeX +aab +aab +aRl +aMe +aKv +aMD +aMK +aMX +aKv +aNQ +aRl +aRl +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(70,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +nHR +fwi +fwi +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +qLH +qLH +qLH +iNX +fBv +rze +pcl +pcl +xDI +okp +vQP +vQP +vQP +vQP +vQP +vQP +vQP +ejs +vQP +vQP +dGG +xeX +aab +aab +aRl +aMf +aKv +aKv +aKv +aKv +aKv +aNR +aRl +aab +aab +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(71,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +nHR +nHR +qLH +rFu +qLH +xXd +fBv +rze +pcl +pcl +owu +xeX +wnu +iLL +iLL +wnu +iLL +iLL +wnu +xeX +nlW +uni +xeX +xeX +ach +ach +aKv +aMg +aKv +ach +ach +ach +aKv +aNS +aKv +aab +aab +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(72,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +vkh +vkh +nHR +nHR +cDm +qLH +qLH +qLH +fBv +hfk +pcl +pcl +anT +xeX +xeX +xsU +xsU +xeX +xsU +xsU +xeX +xeX +xsU +xeX +lEy +ach +ach +ach +aGP +aMh +aKv +ach +aab +ach +aKv +aOv +aGP +ach +ach +ach +ach +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(73,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +aAa +azR +azR +azR +azR +azR +aAa +aAM +aAM +aCm +vkh +nHR +nHR +bqs +bqs +bqs +bqs +fBv +fBv +cWr +cWr +fBv +fBv +fBv +fBv +fBv +fBv +aab +ach +aab +aab +aab +aab +aab +aab +aab +aMr +aMr +aHh +aMr +aIR +aIR +aIR +aMr +aHh +aMr +aMr +aMr +aLB +aLB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(74,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +azR +azR +azR +azR +azR +azR +azR +aAM +aBc +aBz +vkh +nHR +pcl +pcl +fBv +pcl +pcl +pcl +fBv +pcl +pcl +fBv +pcl +pcl +pcl +pcl +fBv +aab +ach +aab +aMr +aIR +aMr +aMr +aMr +aIR +aMr +aLL +bwE +aMu +nPB +nPB +nPB +aNA +bwE +aIR +aKo +cGo +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(75,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +azR +azR +azR +ack +azR +azR +azR +ayi +aBc +aBz +vkh +nHR +pcl +pcl +fBv +pcl +pcl +pcl +fBv +pcl +pcl +fBv +pcl +pcl +pcl +pcl +fBv +ach +ach +aMr +aMr +hFt +aIk +aKa +kLu +kLu +edo +kLu +wRq +aHA +aHA +aHA +aHA +aHA +xIV +aPL +aLs +cIv +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(76,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +azR +azR +azR +azR +azR +azR +azR +aAM +aBc +aBz +vkh +nHR +pcl +pcl +fBv +pcl +pcl +pcl +fBv +pcl +pcl +fBv +fBv +fBv +fBv +fBv +fBv +aab +aMr +aMr +aGC +vHR +hlP +aIR +aIS +aIS +aIS +aIS +gcV +aIS +aIS +aIS +aIS +aIS +aOZ +aPN +aMr +aMr +aMr +aMr +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(77,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +abg +yho +azR +acl +azR +adL +abg +aAM +aAM +aCt +vkh +nHR +fBv +fBv +fBv +fBv +fBv +fBv +fBv +pcl +pcl +fBv +pcl +pcl +pcl +pcl +fBv +aab +aIR +aDR +aGD +aKD +aIt +aGR +aGR +aIR +aIR +aGR +aMm +aIR +aIR +aIR +aIR +aIR +cxx +aIR +ilE +tSC +eDH +fsI +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(78,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +aAM +aAM +ueG +acd +aAM +acd +azS +aAM +aAM +aAM +vkh +vkh +nHR +pcl +pcl +pcl +pcl +pcl +pcl +fBv +pcl +pcl +fBv +pcl +pcl +pcl +pcl +fBv +aab +aIR +aEX +aGE +aHs +aMr +aGR +aFM +aLc +aLc +aIR +aMn +nPB +nPB +nPB +nPB +nPB +cxx +aIR +aVl +tfy +aLl +fyA +aIR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(79,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +nHR +pcl +pcl +pcl +pcl +pcl +pcl +pcl +pcl +pcl +fBv +pcl +pcl +pcl +pcl +fBv +aab +aIR +aDR +jSH +aHt +aEW +aFa +aFY +aLd +aIy +aLP +trW +abr +abr +aMT +abr +abr +fZb +aPO +aLl +aLl +fpV +fyA +aIR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(80,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +nHR +pcl +pcl +pcl +pcl +pcl +pcl +fBv +pcl +pcl +fBv +pcl +pcl +pcl +pcl +fBv +aab +aIR +aDF +kjk +aHu +aMr +aGR +aKW +aLe +aLe +aIR +gcV +aIS +aIS +aIS +aIS +aIS +cxx +aIR +bYH +aLl +aLl +fyA +aIR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(81,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +fBv +aab +aIR +aDR +hhT +aKD +aHN +aGR +aGR +aIR +aIR +aGR +aMm +aIR +aIR +aIR +aIR +aIR +cxx +aIR +mEV +dkK +fsh +aLD +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(82,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ach +ach +aMr +aMr +aEg +yiv +jlk +aIR +nPB +nPB +nPB +nPB +gcV +nPB +nPB +aMU +nPB +nPB +aOZ +aPN +aMr +aMr +aMr +aMr +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(83,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ach +ach +aMr +aMr +jzQ +aIz +aKa +aHA +aHA +rsb +aHA +uOk +kBZ +kBZ +kBZ +kBZ +kBZ +nKf +aPL +bpb +dzr +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(84,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMr +aIR +aMr +aMr +aMr +aIR +aMr +aGT +iYo +aIS +aIS +aIv +aIS +aIS +aLL +aIR +brb +dzs +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(85,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMr +aMr +aIR +aMr +aMr +aMr +aMr +aMr +aIR +aMr +aMr +aMr +aLB +aLB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(86,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(87,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(88,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(89,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(90,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(91,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(92,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(93,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(94,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(95,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(96,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(97,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(98,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(99,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(100,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(101,1,1) = {" +aAl +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +aAl +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(102,1,1) = {" +rNA +voL +uwl +voL +tSQ +oGb +tHr +uwl +tSQ +voL +tSQ +uEq +jBa +jia +jBa +jBa +uGA +jBa +jBa +hdw +eVC +jBa +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(103,1,1) = {" +rNA +uwl +tSQ +tSQ +voL +oGb +tHr +tSQ +uwl +tSQ +uwl +uEq +apv +apv +apv +apv +apv +apv +leq +elJ +ofh +leq +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(104,1,1) = {" +rNA +tSQ +iMU +tSQ +voL +oGb +tHr +uwl +voL +uwl +tSQ +uEq +dQv +apv +jes +bgb +nGV +apv +apv +ahu +ahu +apv +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(105,1,1) = {" +rNA +tSQ +aoA +nYr +lLY +idD +kKN +lLY +nYr +wya +tSQ +uEq +xdI +owf +dGz +dGz +dGz +dGz +dGz +dGz +dGz +dGz +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +nQl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(106,1,1) = {" +rNA +uwl +dBg +meK +nME +nME +nME +nME +meK +gVq +voL +uEq +apv +apv +dGz +dGz +gaB +dGz +gaB +dGz +dGz +gaB +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(107,1,1) = {" +rNA +voL +oGb +nME +nME +irC +poM +nME +nME +tHr +uwl +uEq +jLz +apv +dGz +gbs +hVe +hVe +hVe +hVe +hVe +kwe +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(108,1,1) = {" +rNA +uwl +oGb +nME +nME +jZB +uVB +nME +nME +tHr +tSQ +uEq +sAT +eCE +dGz +jxe +hxP +hxP +hxP +hxP +hxP +dwM +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(109,1,1) = {" +rNA +tSQ +dBg +meK +gZe +nME +nME +mzu +meK +gVq +tSQ +uEq +apv +apv +dGz +jxe +hxP +hxP +maT +hxP +hxP +dwM +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(110,1,1) = {" +rNA +uwl +oRN +pLD +vlh +vlh +vlh +vlh +pLD +xCY +iMU +uEq +mgL +apv +gaB +jxe +hxP +hxP +hxP +hxP +hxP +dwM +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(111,1,1) = {" +rNA +voL +tSQ +tSQ +uwl +voL +uwl +tSQ +tSQ +tSQ +uwl +uEq +efs +vCX +dGz +jxe +hxP +hxP +hxP +hxP +hxP +dwM +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(112,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(113,1,1) = {" +rNA +cTm +cTm +cTm +cTm +cTm +cTm +cTm +cTm +cTm +cTm +uEq +qUU +qUU +qUU +qUU +qUU +qUU +qUU +qUU +qUU +qUU +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(114,1,1) = {" +rNA +wxZ +uBw +dDt +dDt +dDt +qJG +uBw +uBw +uBw +uBw +uEq +wPm +upE +wPm +vnH +qUU +qUU +bua +rXa +wPm +wPm +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(115,1,1) = {" +rNA +xoF +hJN +qYS +qYS +qYS +huK +qYS +qYS +qYS +hUY +uEq +nfE +nfE +nfE +fHv +iEp +iEp +fHv +nfE +nfE +nfE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(116,1,1) = {" +rNA +xoF +asN +jcG +jcG +edu +rbE +sFE +jcG +mNc +btC +uEq +bvM +heU +ivX +dJd +jCU +jCU +dJd +kCk +heU +kOF +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(117,1,1) = {" +rNA +xoF +asN +vIY +jcG +jcG +rbE +jcG +jcG +jcG +vrE +uEq +jCU +jCU +jCU +jCU +jCU +jCU +jCU +jCU +jCU +jCU +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(118,1,1) = {" +rNA +xoF +asN +jcG +jcG +jcG +rbE +jcG +jcG +jcG +vrE +uEq +jCU +nfZ +uba +jCU +jCU +jCU +jCU +jCU +jCU +iWV +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(119,1,1) = {" +rNA +xoF +asN +jcG +jcG +jcG +rbE +jcG +dfc +vIY +vrE +uEq +jCU +jCU +qGX +jCU +ujv +nxK +nxK +ugD +jCU +gkL +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(120,1,1) = {" +rNA +xoF +tIE +xGw +lvd +xGw +jat +xGw +xGw +xGw +sHE +uEq +jCU +jCU +xxa +jCU +hyN +ekT +ekT +anU +jCU +gkL +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(121,1,1) = {" +rNA +hUs +kAv +gZo +gZo +gZo +bJd +gZo +gZo +gZo +kAv +uEq +jCU +jCU +qGX +jCU +kCk +hPs +hPs +ivX +jCU +peO +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(122,1,1) = {" +rNA +cTm +cTm +cTm +cTm +cTm +cTm +cTm +cTm +cTm +cTm +uEq +nfZ +iEc +dyu +jCU +jCU +jCU +jCU +jCU +jCU +jCU +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(123,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(124,1,1) = {" +rNA +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +hWV +uEq +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(125,1,1) = {" +rNA +aRS +aRS +heK +aRS +aRS +aRS +aRS +aRS +aRS +aRS +uEq +xyT +xyT +xyT +nvZ +xyT +xyT +xyT +xyT +nvZ +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(126,1,1) = {" +rNA +aRS +aRS +aRS +aRS +hWV +aRS +aRS +heK +aRS +aRS +uEq +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(127,1,1) = {" +rNA +hWV +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +uEq +xyT +nvZ +xyT +xyT +xyT +xyT +nvZ +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(128,1,1) = {" +rNA +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +heK +uEq +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(129,1,1) = {" +rNA +aRS +aRS +aRS +hWV +aRS +aRS +heK +aRS +aRS +aRS +uEq +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(130,1,1) = {" +rNA +aRS +aRS +aRS +aRS +hWV +aRS +aRS +aRS +aRS +aRS +uEq +xyT +xyT +xyT +nvZ +xyT +xyT +xyT +xyT +nvZ +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(131,1,1) = {" +rNA +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +uEq +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(132,1,1) = {" +rNA +aRS +heK +aRS +aRS +aRS +aRS +aRS +aRS +aRS +aRS +uEq +xyT +nvZ +xyT +xyT +xyT +xyT +nvZ +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(133,1,1) = {" +rNA +aRS +aRS +aRS +aRS +aRS +aRS +hWV +aRS +aRS +heK +uEq +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +xyT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(134,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(135,1,1) = {" +rNA +pQS +dXw +iSd +rGE +cZR +cZR +dXw +pQS +oSG +oSG +uEq +akE +akE +akE +akE +akE +akE +akE +xVJ +akE +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(136,1,1) = {" +rNA +dXw +dXw +iSd +dXw +pQS +dXw +gGr +cZR +iSd +oSG +uEq +akE +vhD +akE +akE +akE +akE +akE +akE +pXw +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(137,1,1) = {" +rNA +cZR +kPI +kPI +pQS +dXw +dXw +cZR +pQS +pQS +oSG +uEq +akE +akE +akE +awe +akE +akE +akE +akE +akE +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(138,1,1) = {" +rNA +gGr +kPI +dXw +iSd +cZR +cZR +wuI +oSG +oSG +dXw +uEq +akE +akE +akE +akE +pXw +akE +akE +akE +awe +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(139,1,1) = {" +rNA +cZR +dXw +cZR +gGr +oSG +oSG +oSG +cZR +pQS +cZR +uEq +akE +akE +akE +cbw +akE +akE +vhD +akE +akE +xVJ +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(140,1,1) = {" +rNA +dXw +pQS +pQS +oSG +cZR +pQS +pQS +cZR +dXw +cZR +uEq +akE +akE +akE +akE +akE +akE +akE +xVJ +akE +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(141,1,1) = {" +rNA +pQS +dXw +oSG +oSG +cZR +gGr +cMl +dXw +cZR +pQS +uEq +akE +vhD +akE +akE +akE +akE +awe +akE +pXw +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(142,1,1) = {" +rNA +cZR +bET +oSG +oSG +dXw +cZR +pQS +cZR +pQS +cZR +uEq +akE +akE +akE +akE +akE +akE +akE +akE +akE +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(143,1,1) = {" +rNA +gGr +cZR +pQS +dXw +oSG +oSG +cZR +dXw +iSd +iSd +uEq +akE +akE +cbw +akE +pXw +akE +akE +akE +awe +akE +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(144,1,1) = {" +rNA +cZR +dXw +cZR +gGr +cZR +fhl +cZR +iSd +iSd +iSd +uEq +akE +akE +akE +akE +akE +akE +vhD +akE +akE +xVJ +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(145,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(146,1,1) = {" +rNA +mAz +gJq +gJq +bZq +tPU +tPU +tPU +tPU +tPU +kIF +uEq +hAj +hAj +fcF +qRv +ond +ond +irg +irg +irg +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(147,1,1) = {" +rNA +mAz +gJq +gJq +bZq +tPU +tPU +tPU +tPU +tPU +tPU +uEq +hAj +hAj +fcF +qRv +lzE +qUn +qUn +qUn +flH +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(148,1,1) = {" +rNA +mAz +gJq +gJq +bZq +buc +agK +agK +agK +aSP +tPU +uEq +hAj +xjJ +wuA +qRv +txp +wji +wji +wji +xFr +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(149,1,1) = {" +rNA +mAz +gJq +gJq +bZq +kDg +nzG +nzG +nzG +iSh +tPU +uEq +hAj +cnZ +wuA +qRv +txp +wji +wji +wji +xFr +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(150,1,1) = {" +rNA +mAz +gJq +gJq +bZq +kDg +nzG +nzG +nzG +iSh +tPU +uEq +hAj +cnZ +wuA +qRv +txp +wji +wji +wji +xFr +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(151,1,1) = {" +rNA +mAz +gJq +gJq +bZq +kDg +nzG +nzG +nzG +iSh +tPU +uEq +hAj +cnZ +wuA +qRv +txp +wji +wji +wji +xFr +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(152,1,1) = {" +rNA +mAz +gJq +gJq +bZq +kDg +nzG +nzG +nzG +iSh +tPU +uEq +hAj +cIK +wuA +qRv +txp +wji +wji +wji +xFr +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(153,1,1) = {" +rNA +mAz +gJq +gJq +bZq +ulC +thF +thF +thF +sNY +tPU +uEq +hAj +hAj +fcF +qRv +yaK +aVh +aVh +bzl +tuU +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(154,1,1) = {" +rNA +mAz +gJq +gJq +bZq +tPU +tPU +tPU +tPU +tPU +tPU +uEq +hAj +hAj +fcF +qRv +irg +irg +irg +irg +irg +irg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(155,1,1) = {" +rNA +mAz +gJq +gJq +fpC +pML +pML +pML +pML +aWf +wXq +uEq +sLi +hAj +fcF +pIm +cFY +cFY +cFY +cFY +cFY +cFY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(156,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(157,1,1) = {" +rNA +nSX +nSX +nSX +nSX +nSX +nSX +nSX +nSX +nSX +nSX +wwP +fBc +fBc +fBc +fBc +fBc +fBc +fBc +fBc +fBc +fBc +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(158,1,1) = {" +rNA +wfJ +oAv +bFD +bFD +bFD +bFD +bFD +sAo +bFD +wfJ +wwP +iAb +iAb +fBc +iAb +iAb +iAb +iAb +fBc +iAb +iAb +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(159,1,1) = {" +rNA +wnt +hrc +hrc +iRY +lDo +uBB +hQT +dVg +hQT +mnW +wwP +jJW +jJW +gsv +jJW +jJW +jJW +jJW +uTS +jJW +jJW +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(160,1,1) = {" +rNA +wnt +hrc +wnt +kYs +xzU +xoE +jIi +soF +jIi +pep +wwP +mtn +kXO +kXO +kXO +fAm +chQ +gmB +gmB +gmB +fFz +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(161,1,1) = {" +rNA +wnt +hrc +ejR +lea +xzU +soF +soF +soF +jIi +pep +wwP +ciT +phI +phI +phI +wtZ +xIK +phI +phI +phI +gdv +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(162,1,1) = {" +rNA +wnt +hrc +wnt +one +xzU +xoE +jIi +soF +jIi +pep +wwP +mtn +kXO +ciT +phI +wtZ +xIK +phI +gdv +gmB +fFz +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(163,1,1) = {" +rNA +wnt +hrc +hrc +dFW +fcp +jAG +wdz +sDl +wdz +gdp +wwP +aCL +phI +ciT +phI +tlF +xIK +phI +gdv +phI +wOn +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(164,1,1) = {" +rNA +wnt +hrc +qJQ +gZM +gZM +gZM +gZM +gZM +gZM +gZM +wwP +slX +iOZ +ciT +phI +wtZ +xIK +phI +gdv +bgI +lWt +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(165,1,1) = {" +rNA +wnt +hrc +hiY +wxs +jHJ +jHJ +jHJ +jHJ +aaZ +wnt +wwP +ciT +phI +phI +phI +wtZ +xIK +phI +phI +phI +gdv +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(166,1,1) = {" +rNA +wnt +hrc +pDw +cPR +dro +dro +dro +dro +ybY +wnt +wwP +slX +iOZ +iOZ +iOZ +oIP +iII +bgI +bgI +bgI +lWt +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(167,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(168,1,1) = {" +rNA +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +wwP +sao +sao +sao +fhY +iLr +gIG +hLr +hLr +hLr +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(169,1,1) = {" +rNA +xSj +pta +xSj +xSj +xSj +xSj +xSj +xSj +pta +xSj +wwP +sao +sao +sao +sao +sao +sbh +hLr +whs +rgN +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(170,1,1) = {" +rNA +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +wwP +sao +sao +sao +sao +sao +sbh +naC +hLr +hLr +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(171,1,1) = {" +rNA +xSj +xSj +xSj +pta +xSj +xSj +pta +xSj +xSj +xSj +wwP +sao +nNs +woS +bMk +sao +sbh +mni +lVP +mrO +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(172,1,1) = {" +rNA +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +wwP +sao +sbh +naC +amU +sao +sbh +prt +hLr +hLr +qFK +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(173,1,1) = {" +rNA +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +wwP +sao +sbh +hLr +amU +sao +sbh +dBn +hLr +hLr +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(174,1,1) = {" +rNA +xSj +xSj +xSj +pta +xSj +xSj +pta +xSj +xSj +xSj +wwP +sao +sbh +hLr +amU +sao +sbh +nDh +hLr +iFf +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(175,1,1) = {" +rNA +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +wwP +sao +sbh +qFK +amU +sao +sbh +hLr +qFK +hLr +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(176,1,1) = {" +rNA +xSj +pta +xSj +xSj +xSj +xSj +xSj +xSj +pta +xSj +wwP +sao +fhY +iLr +mAG +sao +sbh +hLr +rgN +hLr +hLr +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(177,1,1) = {" +rNA +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +xSj +wwP +sao +nNs +woS +woS +woS +vOv +hLr +hLr +hLr +qFK +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(178,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(179,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +bBa +bBa +bBa +bBa +bBa +bBa +bBa +bBa +bBa +bBa +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(180,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +ldY +ldY +bBa +ldY +ldY +ldY +ldY +bBa +ldY +ldY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(181,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +gEm +gEm +xmP +gEm +gEm +gEm +gEm +cjD +gEm +gEm +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(182,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +stZ +kgB +kgB +kgB +pjE +sPi +fEF +fEF +fEF +oTT +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(183,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +iQW +gSz +gSz +gSz +rSQ +hSl +gSz +gSz +gSz +hZC +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(184,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +iQW +gSz +gSz +gSz +rSQ +hSl +gSz +gSz +gSz +hZC +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(185,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +iQW +gSz +gSz +gSz +rSQ +hSl +gSz +gSz +gSz +hZC +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(186,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +iQW +gSz +gSz +gSz +rSQ +hSl +gSz +gSz +gSz +hZC +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(187,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +iQW +gSz +gSz +gSz +rSQ +hSl +gSz +gSz +gSz +hZC +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(188,1,1) = {" +rNA +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +nZL +wwP +bTH +gMJ +gMJ +gMJ +sPB +rQC +sMD +sMD +sMD +doY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(189,1,1) = {" +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(190,1,1) = {" +rNA +tCi +tCi +tCi +tCi +tCi +tCi +tCi +tCi +tCi +tCi +wwP +err +rKY +rKY +rKY +rKY +rKY +rKY +rKY +rKY +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(191,1,1) = {" +rNA +wkk +wkk +tCi +wkk +wkk +wkk +wkk +tCi +wkk +wkk +wwP +err +rKY +rKY +rBk +rBk +rBk +rBk +rKY +rKY +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(192,1,1) = {" +rNA +hfX +hfX +fNJ +hfX +hfX +hfX +hfX +fnN +hfX +hfX +wwP +rKY +rKY +rKY +jNv +jNv +jNv +jNv +rKY +rKY +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(193,1,1) = {" +rNA +tzG +wPC +wPC +wPC +wPC +nTv +nTv +nTv +nTv +vIc +wwP +rKY +rKY +epX +bch +mES +mES +axF +aiB +rBk +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(194,1,1) = {" +rNA +riv +sra +sra +sra +sra +sra +sra +sra +sra +fYf +wwP +rKY +rBk +xCw +mPN +wJf +usu +kkM +aiB +rBk +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(195,1,1) = {" +rNA +riv +sra +sra +sra +sra +sra +sra +sra +sra +fYf +wwP +rKY +rBk +xCw +mPN +ykE +poG +kkM +aiB +rBk +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(196,1,1) = {" +rNA +riv +sra +sra +sra +sra +sra +sra +sra +sra +fYf +wwP +rKY +rBk +xCw +axF +gbB +gbB +mwh +jyg +rKY +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(197,1,1) = {" +rNA +riv +sra +sra +sra +sra +sra +sra +sra +sra +fYf +wwP +rKY +rKY +rKY +iBT +iBT +iBT +iBT +rKY +rKY +rKY +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(198,1,1) = {" +rNA +riv +sra +sra +sra +sra +sra +sra +sra +sra +fYf +wwP +fho +oxl +rKY +rBk +rBk +rBk +rBk +rKY +rKY +sBg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(199,1,1) = {" +rNA +lby +aYL +aYL +aYL +aYL +xte +xte +xte +xte +jVy +wwP +rKY +iKL +rKY +rKY +rKY +rKY +rKY +rKY +rKY +sBg +brs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(200,1,1) = {" +aAl +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +aAl +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} diff --git a/maps/exodus/exodus-admin_old.dmm b/maps/exodus/exodus-admin_old.dmm new file mode 100644 index 00000000000..8abd3c61622 --- /dev/null +++ b/maps/exodus/exodus-admin_old.dmm @@ -0,0 +1,52624 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aab" = ( +/turf/space, +/area/space) +"aad" = ( +/turf/unsimulated/wall, +/area/centcom) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"abi" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/turf/simulated/floor, +/area/shuttle/supply_shuttle) +"abn" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad2" + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor, +/area/shuttle/supply_shuttle) +"abr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"acd" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor, +/area/shuttle/supply_shuttle) +"ach" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"ack" = ( +/obj/effect/shuttle_landmark/supply/start, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"acl" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + dir = 8; + id_tag = "supply_shuttle"; + pixel_x = 25; + tag_door = "supply_shuttle_hatch" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"adL" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/turf/simulated/floor, +/area/shuttle/supply_shuttle) +"adO" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "beach" + }, +/area/space) +"adP" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar West"; + dir = 4 + }, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"aeD" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"afa" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"aff" = ( +/obj/machinery/computer/teleporter{ + dir = 2; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"afI" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/glasses/pint, +/turf/simulated/floor/wood, +/area/merchant_station) +"agI" = ( +/obj/effect/floor_decal/beach{ + dir = 1; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"ahh" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood, +/area/merchant_station) +"ahF" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + icon_state = "heater" + }, +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"ahG" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom) +"aiI" = ( +/turf/simulated/wall/wood, +/area/space) +"amB" = ( +/turf/simulated/mineral, +/area/merchant_station) +"amO" = ( +/obj/machinery/atmospherics/omni/filter{ + active_power_usage = 2500; + tag_east = 1; + tag_south = 4; + tag_west = 2 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"anT" = ( +/obj/structure/sign/warning/airlock, +/turf/unsimulated/wall, +/area/centcom/holding) +"apl" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"apw" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + name = "Warehouse" + }, +/obj/machinery/door/firedoor, +/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/merchant_station) +"asX" = ( +/obj/item/flame/lighter/zippo/random, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"auD" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"avn" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/green, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"avQ" = ( +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"awl" = ( +/obj/effect/shuttle_landmark/escape_pod/out/pod2, +/turf/space, +/area/space) +"axK" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"ayi" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/showcase{ + desc = "A self-contained autopilot that controls supply drones."; + icon_state = "comm_server"; + name = "Supply Drone Virtual Intelligence" + }, +/turf/simulated/floor/plating, +/area/shuttle/supply_shuttle) +"azR" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"azS" = ( +/obj/machinery/conveyor{ + dir = 4; + id_tag = "QMLoad" + }, +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/turf/simulated/floor, +/area/shuttle/supply_shuttle) +"aAa" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/supply_shuttle) +"aAl" = ( +/turf/unsimulated/wall, +/area/space) +"aAH" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"aAM" = ( +/turf/simulated/wall/titanium, +/area/shuttle/supply_shuttle) +"aAR" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aAS" = ( +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"aBc" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/supply_shuttle) +"aBz" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/supply_shuttle) +"aCm" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/space, +/area/shuttle/supply_shuttle) +"aCt" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/space, +/area/shuttle/supply_shuttle) +"aCU" = ( +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aDp" = ( +/obj/item/storage/secure/safe{ + pixel_x = -25 + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"aDB" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"aDF" = ( +/obj/machinery/computer/shuttle_control/emergency, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aDK" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"aDR" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aEg" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/toxin, +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Bridge East" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aEv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"aEU" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"aEW" = ( +/obj/structure/AIcore/deactivated, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aEX" = ( +/obj/machinery/computer/station_alert/all, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aFa" = ( +/obj/machinery/status_display, +/obj/effect/paint_stripe/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aFj" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"aFM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aFY" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Cell" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aGC" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire, +/obj/item/extinguisher, +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Bridge West" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aGD" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aGE" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aGF" = ( +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aGG" = ( +/obj/item/stool/padded, +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aGP" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/structure/sign/warning/docking_area, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aGR" = ( +/obj/effect/paint_stripe/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aGT" = ( +/obj/structure/table/standard, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aHb" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aHc" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aHe" = ( +/obj/machinery/computer/modular/preset/security, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHg" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHh" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + name = "Shuttle Hatch" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aHp" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aHr" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHs" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + dir = 1; + id_tag = "escape_shuttle"; + pixel_y = -25; + tag_door = "escape_shuttle_hatch" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aHt" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aHu" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aHz" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aHA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aHF" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHG" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHN" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aHW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aHX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aIh" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aIj" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aIk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aIt" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aIv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aIy" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aIz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aIA" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aIR" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_shuttle) +"aIS" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aIT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aJu" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aJv" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"aKa" = ( +/obj/machinery/door/airlock/command{ + autoset_access = 0; + req_access = list("ACCESS_BRIDGE") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aKb" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals - Holding Cell"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aKd" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Holding Cell" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aKo" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aKt" = ( +/obj/structure/closet/crate/medical, +/obj/item/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/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/item/reagent_containers/ivbag, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"aKv" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aKC" = ( +/obj/machinery/door/blast/regular{ + id_tag = "CentComPort"; + name = "Security Doors" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aKD" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aKQ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"aKW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aKX" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/holding) +"aKY" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aKZ" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLa" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLc" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aLd" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aLe" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"aLf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLh" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLl" = ( +/turf/simulated/floor/tiled/white, +/area/shuttle/escape_shuttle) +"aLm" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id_tag = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLn" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals North"; + dir = 8 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLs" = ( +/obj/structure/closet/hydrant{ + pixel_x = 30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"aLv" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLw" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLz" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLB" = ( +/obj/effect/paint/red, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aLD" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"aLE" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/escape_shuttle) +"aLF" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id_tag = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLG" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/door/window/southright{ + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLJ" = ( +/obj/structure/sign/redcross, +/turf/unsimulated/wall, +/area/centcom/holding) +"aLL" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/extinguisher, +/obj/item/crowbar, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aLP" = ( +/obj/machinery/door/airlock/security{ + autoset_access = 0; + req_access = list("ACCESS_SECURITY") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aLQ" = ( +/obj/machinery/atm{ + pixel_x = -26 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aLV" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMd" = ( +/obj/machinery/access_button/airlock_interior{ + id_tag = "centcom_escape_dock_north_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMe" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_north_inner"; + name = "Escape Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "centcom_escape_dock_north_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "centcom_escape_dock_north_airlock"; + master_tag = "centcom_escape_dock"; + pixel_y = 24; + tag_airpump = "centcom_escape_dock_north_pump"; + tag_chamber_sensor = "centcom_escape_dock_north_sensor"; + tag_exterior_door = "centcom_escape_dock_north_outer"; + tag_interior_door = "centcom_escape_dock_north_inner" + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMg" = ( +/obj/machinery/airlock_sensor{ + id_tag = "centcom_escape_dock_north_sensor"; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMh" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_north_outer"; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + id_tag = "centcom_escape_dock_north_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = -26 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aMm" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aMn" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Center" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aMo" = ( +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/holding) +"aMp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMr" = ( +/obj/effect/paint_stripe/blue, +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aMs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMt" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMu" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle West"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aMA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMG" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/status_display, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/holding) +"aMH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMT" = ( +/obj/machinery/hologram/holopad, +/obj/effect/shuttle_landmark/escape_shuttle/start, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aMU" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle East"; + dir = 4 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aMW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aMY" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/amanita_pie, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNb" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNc" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNh" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/stew, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/book/manual/barman_recipes, +/obj/item/reagent_containers/glass/rag, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNl" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNn" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"aNo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNx" = ( +/obj/machinery/door/airlock/glass{ + autoset_access = 0; + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNA" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"aNB" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/boiledrice, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNC" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/beetsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNI" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/stuffing, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNJ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/soylenviridians, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aNL" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + frequency = 1380; + child_names_txt = "Airlock One;Airlock Two"; + child_tags_txt = "centcom_escape_dock_north_airlock;centcom_escape_dock_south_airlock"; + dir = 1; + id_tag = "centcom_escape_dock"; + pixel_y = -25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNN" = ( +/obj/machinery/access_button/airlock_interior{ + id_tag = "centcom_escape_dock_south_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aNQ" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_south_inner"; + name = "Escape Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aNR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "centcom_escape_dock_south_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + dir = 1; + id_tag = "centcom_escape_dock_south_airlock"; + master_tag = "centcom_escape_dock"; + pixel_y = -25; + tag_airpump = "centcom_escape_dock_south_pump"; + tag_chamber_sensor = "centcom_escape_dock_south_sensor"; + tag_exterior_door = "centcom_escape_dock_south_outer"; + tag_interior_door = "centcom_escape_dock_south_inner" + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aNS" = ( +/obj/machinery/airlock_sensor{ + id_tag = "centcom_escape_dock_south_sensor"; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aOv" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "centcom_escape_dock_south_outer"; + name = "Escape Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + id_tag = "centcom_escape_dock_south_airlock"; + name = "exterior access button"; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/plating, +/area/centcom/holding) +"aOZ" = ( +/obj/machinery/status_display{ + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"aPa" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aPe" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"aPr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"aPK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aPL" = ( +/obj/machinery/door/airlock/civilian, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aPN" = ( +/turf/simulated/wall/titanium, +/area/shuttle/escape_shuttle) +"aPO" = ( +/obj/machinery/door/airlock/medical, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_shuttle) +"aPR" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/bloodsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aPS" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/tofukabob, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aRl" = ( +/turf/unsimulated/wall, +/area/centcom/holding) +"aRm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/poppypretzel, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"aRC" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"aRN" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"aSO" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"aUe" = ( +/obj/structure/table/holo_woodentable, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"aWs" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"aZp" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"bak" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = null; + charge = 2.5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 0; + output_attempt = 1; + output_level = 250000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bcF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"bep" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"bfj" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"bfr" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"bgJ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"bhY" = ( +/obj/effect/landmark{ + name = "ActorSpawn" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"bil" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"bjb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"bjr" = ( +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"bjG" = ( +/obj/machinery/vending/medical, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"bjS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Maintenance Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"bkb" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"blb" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"bmb" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"bmx" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"bnb" = ( +/obj/structure/table/standard, +/obj/item/wrench, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"bnl" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bou" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bpb" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"bpF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"bpJ" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/centcom/ferry) +"bqs" = ( +/turf/unsimulated/wall, +/area/centcom/test) +"brb" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/machinery/computer/cryopod/robot{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"brs" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"brF" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"bvb" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/spesslaw, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"bvj" = ( +/obj/machinery/computer/modular/preset/library, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"bvs" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"bvz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"bwE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"bxn" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/obj/structure/decoy{ + name = "A.L.I.C.E." + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"byb" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/candiedapple, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"byM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9; + icon_state = "intact" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/tank/nitrogen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"bzm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/mushroomsoup, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"bzZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bAG" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4; + icon_state = "burst_l"; + name = "propulsion" + }, +/turf/space, +/area/shuttle/merchant/home) +"bAM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"bAS" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/ionrifle, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bBi" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"bCW" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"bDe" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"bDh" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"bDk" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"bEB" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"bGp" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"bHQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bIj" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/space) +"bKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bMb" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/meatsteak, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"bMd" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"bMB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"bMD" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/reagent_containers/spray/cleaner, +/turf/simulated/floor/plating, +/area/merchant_station) +"bNF" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "admin_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/effect/shuttle_landmark/admin/start, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"bQo" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"bRf" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Red Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"bRZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"bSy" = ( +/obj/machinery/door/airlock/centcom{ + name = "Cell"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"bTF" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"bVd" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"bVf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"bVS" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/space) +"bWq" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"bYq" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"bYM" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"bZb" = ( +/obj/item/device/multitool, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"bZv" = ( +/obj/structure/closet/secure_closet/hos, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"bZC" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"bZV" = ( +/obj/item/beach_ball/holovolleyball, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"cah" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled/airless, +/area/merchant_station) +"cay" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_ship_exterior"; + locked = 1; + name = "Ship Exterior" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/effect/shuttle_landmark/merchant/start, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"cbg" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"ceE" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"cfA" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"cfX" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"cgV" = ( +/obj/structure/bed/chair/shuttle/black, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"cjj" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/pinpointer/advpinpointer, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cjU" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"ckO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/holofloor/desert, +/area/space) +"clD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashbangs, +/obj/item/handcuffs, +/obj/item/device/flash, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/glasses/tacgoggles, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"clW" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cnG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/merchant_station) +"cnP" = ( +/obj/item/stool/padded, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"cpg" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"cpS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/merchant_station) +"csj" = ( +/obj/machinery/vending/cola{ + name = "Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ctk" = ( +/obj/machinery/vending/snack{ + name = "Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"cus" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 0; + pixel_y = 29 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"cuC" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"cwp" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/start{ + name = "Merchant" + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"cwE" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "CREED"; + name = "Ready Room"; + p_open = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"cxq" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/space) +"cxx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"cxG" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 1; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cyy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"cCk" = ( +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cCq" = ( +/obj/machinery/door/airlock/centcom{ + name = "Teleporter Bay"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cCS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"cDm" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"cEq" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"cEu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Arrivals South"; + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"cEK" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"cEX" = ( +/obj/machinery/vending/cola, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"cGo" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle West Storage"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"cGY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/merchant_station) +"cHa" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"cHn" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"cHL" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cIe" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"cIv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"cJS" = ( +/obj/structure/table/rack, +/obj/item/rig/military/equipped, +/obj/item/rig/military/equipped, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"cKW" = ( +/obj/structure/fountain/mundane{ + alpha = 204; + pixel_x = 0 + }, +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"cLk" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"cMT" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/merchant_station) +"cPC" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert3" + }, +/area/space) +"cPL" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"cQH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"cRq" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle"; + pixel_x = -25; + pixel_y = 0; + req_access = list("ACCESS_CENT_GENERAL"); + tag_door = "admin_shuttle_hatch" + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"cSX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"cTa" = ( +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"cTH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cUq" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"cUI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"cVu" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"cWr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Courtroom"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/holding) +"cWC" = ( +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"cXO" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"cYW" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"cZm" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"cZr" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"dac" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"dcN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"dhf" = ( +/obj/effect/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"dhO" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"dih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"djD" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle Medical"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"dkl" = ( +/obj/machinery/computer/arcade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"dkr" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/space) +"dkE" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"dkF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"dkK" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"dkU" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"dlQ" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"dma" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"dmk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"dmq" = ( +/obj/structure/table/rack, +/obj/item/storage/secure/briefcase, +/obj/item/storage/fancy/cigarettes, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/belt/utility, +/obj/item/storage/backpack/satchel, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"dnl" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"dnP" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/centcom/holding) +"dor" = ( +/obj/machinery/door/airlock/hatch{ + name = "Storage" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"drx" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/space) +"drV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "merchant_ship_vent" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"dtE" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"dtJ" = ( +/obj/machinery/shieldgen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"duU" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert0" + }, +/area/space) +"dwt" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/vox/vox_casual, +/turf/simulated/floor/plating, +/area/merchant_station) +"dyD" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = list("ACCESS_BAR") + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"dzi" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"dzr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"dzs" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Shuttle East Storage"; + dir = 8 + }, +/obj/machinery/cryopod/robot{ + time_till_despawn = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"dzu" = ( +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"dzy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"dBB" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"dDN" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"dEm" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/merchant_station) +"dEC" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/recharger, +/obj/item/device/eftpos, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"dEZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"dGB" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"dGG" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"dHN" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"dHU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"dIs" = ( +/obj/machinery/door/unpowered/simple/sandstone, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"dLx" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"dMC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"dTJ" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"dVH" = ( +/obj/structure/holonet, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"dVU" = ( +/turf/simulated/floor/holofloor/desert, +/area/space) +"dWY" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"dXM" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/space) +"dZd" = ( +/obj/machinery/fabricator/hacked, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"edo" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"edr" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"eew" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"eeP" = ( +/obj/machinery/telecomms/bus/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"efg" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"efX" = ( +/obj/item/inflatable_duck, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"ehC" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"ehF" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"ejs" = ( +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"ekb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"epv" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/wood, +/area/space) +"epB" = ( +/obj/machinery/power/emitter, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"epF" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"eqW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"eqZ" = ( +/obj/machinery/chem_master, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"esT" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"etv" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/item/reagent_containers/spray/cleaner, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"etZ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"exJ" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"exW" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eyl" = ( +/turf/unsimulated/mineral, +/area/space) +"ezr" = ( +/obj/machinery/computer/shuttle_control/merchant{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"ezY" = ( +/obj/machinery/door/airlock/centcom{ + name = "Medical Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"eAu" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"eAT" = ( +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"eBJ" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"eBW" = ( +/turf/simulated/floor/tiled, +/area/space) +"eBZ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"eCw" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/escape_shuttle) +"eDH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/iv_drip, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"eFe" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/space) +"eFr" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"eGl" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"eHL" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"eJY" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/space) +"eKq" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 2500; + tag_east = 1; + tag_east_con = 0.21; + tag_south = 2; + tag_west = 1; + tag_west_con = 0.79 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"eLs" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"eNG" = ( +/obj/structure/table/rack, +/obj/random/medical, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eNM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"eNN" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion" + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"ePF" = ( +/obj/machinery/computer/crew{ + dir = 8; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"eSf" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"eTL" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"eUy" = ( +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = 22 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"eVh" = ( +/obj/structure/table/rack/holorack, +/obj/effect/landmark/costume/chameleon, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"eVH" = ( +/obj/machinery/door/airlock/centcom{ + name = "Creed's Office"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/creed) +"eWT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eXe" = ( +/obj/machinery/door/window/southleft, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor_switch{ + id = "merchantbelt2" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eXw" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"eYF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"eYL" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"eYX" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8; + icon_state = "wooden_chair_wings" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"fbi" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fbA" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fcJ" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 5; + icon_state = "beach" + }, +/area/space) +"fcP" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fcY" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"fdV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fea" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fes" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4; + icon_state = "wooden_chair_wings" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"feP" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ffi" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/space) +"ffJ" = ( +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/item/card/id/centcom, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"fgf" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"fil" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"fis" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/melee/energy/axe, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fjm" = ( +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/wood, +/area/merchant_station) +"fju" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"fjJ" = ( +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"fkb" = ( +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar Center" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"fkv" = ( +/obj/item/paper{ + info = "\[center]\[b]READ INSTRUCTIONS CAREFULLY\[/b]\[/center]\[br]\[br]Hello! Welcome and congratulations on being hired for NanoTrasen's new Television initiative. You are now tasked with the creation and production of NanoTrasen brand television that is to be broadcasted to all of our stations!\[br]\[br] We've outfitted these facilities with all the materials and objects you will need.\[br]On the port side you'll find various venders and machines, namely the Wardrobe Dispenser, which will dispense holoclothing and items for you to use, and a Quickee brand plastic surgery machine (which I would remind you you are contractually obligated to \[b]not\[/b] report to the authorities.) which can change your appearance into anything you want, even other races. Stern and aft you'll find all the materials we could muster up on short notice. Use it to decorate the stage to your liking. Starboard you'll find gases, microwaves, hydroponic trays and the like. Go silly! This is already paid for (as are you) so do what you want and entertain!"; + name = "Actor's Guild Instruction Pamphlet" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"flC" = ( +/obj/item/stool, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fmn" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"fmF" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"fnf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/reagent_containers/ivbag/blood/OMinus, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/defibrillator/loaded, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"fnk" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"fpd" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fpu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"fpB" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fpE" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fpV" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/shuttle/escape_shuttle) +"fqj" = ( +/obj/structure/table/rack, +/obj/item/rig/light/internalaffairs/equipped, +/obj/item/rig/light/internalaffairs/equipped, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"frC" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/corners{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fsh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"fsC" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fsI" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"ftw" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"ftO" = ( +/obj/structure/closet/secure_closet{ + name = "merchant's locker"; + req_access = list("ACCESS_MERCHANT") + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/random/handgun, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"fvU" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"fwi" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/suppy) +"fwL" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass, +/area/space) +"fxn" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fxw" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"fyA" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/escape_shuttle) +"fzA" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/space) +"fzF" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fzZ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"fBv" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"fBO" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"fCk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/eastright, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"fDi" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 9; + icon_state = "beach" + }, +/area/space) +"fDo" = ( +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"fDu" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fDL" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 8; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/space) +"fFh" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/tdome) +"fGm" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"fGH" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"fHw" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_station_interior"; + locked = 1; + name = "Station Exterior" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"fHG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"fHR" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/living) +"fIL" = ( +/obj/machinery/light/small, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"fKr" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fMq" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fMA" = ( +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"fNw" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/space) +"fOf" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"fOt" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fQu" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"fQx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"fRA" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass, +/area/space) +"fRC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fTr" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/space, +/area/space) +"fTH" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"fUv" = ( +/obj/structure/table/reinforced, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/storage/belt/holster/security/tactical, +/obj/item/taperoll/police, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"fUy" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"fWw" = ( +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"fWy" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"fYU" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/ferry) +"fZb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"gal" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"gaH" = ( +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"gbi" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"gct" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"gcS" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/glass/rag{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"gcV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"gdz" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/material/kitchen/rollingpin, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"gex" = ( +/obj/structure/closet/crate/medical, +/obj/item/circular_saw, +/obj/item/surgicaldrill, +/obj/item/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/bonesetter, +/obj/item/scalpel, +/obj/item/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/hemostat{ + pixel_y = 4 + }, +/obj/item/cautery{ + pixel_y = 4 + }, +/obj/item/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/nanopaste, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"gge" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"ghj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"ghY" = ( +/obj/structure/table/woodentable{ + dir = 10 + }, +/obj/machinery/button/blast_door{ + id_tag = "CREED"; + name = "Spec Ops Ready Room"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/button/blast_door{ + icon_state = "doorctrl0"; + id_tag = "ASSAULT"; + name = "Mech Storage"; + pixel_y = -4 + }, +/obj/machinery/button/blast_door{ + id_tag = "ert_synth_equipment"; + name = "Synth Equipment"; + pixel_x = 5; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"gid" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"gin" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_south = 3; + tag_west = 2 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"giS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"gjw" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/reagent_containers/food/snacks/bigbiteburger, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"gjW" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/space) +"gkM" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gkS" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/holofloor/grass, +/area/space) +"gof" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 8; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"goj" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"gox" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/space) +"gpe" = ( +/obj/effect/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"gqk" = ( +/obj/structure/table/standard, +/obj/item/paper, +/obj/item/pen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"grI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"grR" = ( +/obj/structure/cable, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"gsd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/prepainted, +/area/merchant_station) +"gsj" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/wrench, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"gtb" = ( +/obj/machinery/pipedispenser, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"gtc" = ( +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gtw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/space) +"guf" = ( +/obj/structure/table/standard, +/obj/item/card/id/centcom, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"gvu" = ( +/obj/machinery/door/window/northright, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gzE" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"gAi" = ( +/obj/structure/table/standard, +/obj/item/cautery{ + pixel_y = 4 + }, +/obj/item/hemostat{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"gAj" = ( +/obj/structure/sign/warning/engineering_access{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"gAq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"gAH" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"gAN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gAU" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gCe" = ( +/obj/machinery/computer/modular/preset/library{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"gCZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "merchant_station_vent" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"gDI" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/ammo_magazine/mil_rifle, +/obj/item/gun/projectile/automatic/bullpup_rifle, +/obj/item/gun/projectile/automatic/bullpup_rifle, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"gFt" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/grass{ + amount = 50 + }, +/obj/item/stack/tile/grass{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gHg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/merchant_station) +"gHG" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"gIm" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gKP" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"gMh" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gPI" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"gRs" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"gRU" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"gVa" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gWz" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"gWR" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"gXh" = ( +/obj/item/wrench, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"gXL" = ( +/turf/simulated/floor/holofloor/wood, +/area/space) +"gYp" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"gYM" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"had" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donut, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"haH" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"hbH" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/space) +"hbQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular, +/obj/item/device/flash, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/flash, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/kelotane, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hcs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "merchantbase"; + name = "Merchant Loading Shutters" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hdc" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"heW" = ( +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"hfd" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"hfk" = ( +/obj/machinery/computer/shuttle_control{ + dir = 2; + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Centcom" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"hhD" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/space) +"hhT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"hil" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hjm" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_shuttle_fore_hatch"; + locked = 1; + name = "Forward Docking Hatch" + }, +/obj/effect/shuttle_landmark/specops/start, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/specops/centcom) +"hjw" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hjK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hkJ" = ( +/obj/machinery/tele_projector, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"hkM" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/accessory/storage/holster, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"hlP" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"hnD" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"hoQ" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"hqg" = ( +/obj/effect/floor_decal/corner/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"hqj" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hsz" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"hsG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"htn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"hvp" = ( +/turf/simulated/floor/asteroid, +/area/merchant_station) +"hwE" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hwN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hyV" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/suppy) +"hAQ" = ( +/obj/structure/closet/secure_closet/bar, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"hAX" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hBn" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"hCd" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/head/beret/centcom/officer, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/obj/item/clothing/accessory/storage/holster/waist, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hCu" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"hCS" = ( +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"hDq" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"hEf" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hEG" = ( +/obj/structure/sign/redcross{ + pixel_y = -32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"hFt" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"hFA" = ( +/obj/machinery/pipedispenser, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hHa" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"hIU" = ( +/obj/machinery/camera/network/ert{ + c_tag = "Assault Armor South"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"hJU" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn Random" + }, +/turf/simulated/floor/holofloor/space, +/area/space) +"hKJ" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/solarpanel, +/turf/simulated/floor/airless, +/area/merchant_station) +"hKM" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Arrivals Medbay" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hMM" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/prepainted, +/area/merchant_station) +"hMN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"hMW" = ( +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"hOo" = ( +/obj/machinery/chemical_dispenser/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hPf" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"hPi" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hSG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"hTb" = ( +/obj/structure/iv_drip, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"hUM" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"hVv" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"hVA" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/wood, +/area/space) +"hYN" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome" + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"hZJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"iad" = ( +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"ibR" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet, +/area/merchant_station) +"ibS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_ship_interior"; + locked = 1; + name = "Ship Exterior" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"icp" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ide" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ieg" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/obj/structure/holonet/end{ + dir = 8; + icon_state = "volleynet_end" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"iel" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert_dug" + }, +/area/centcom/holding) +"iet" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/sinpockets, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ieX" = ( +/obj/machinery/porta_turret/crescent{ + check_synth = 1; + enabled = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"ifq" = ( +/obj/effect/floor_decal/corner/red/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"igT" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"ikv" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"ipJ" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"iqx" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"itR" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"iuw" = ( +/obj/item/paper_bin, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iwz" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo/random = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"iwZ" = ( +/obj/structure/hygiene/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"ixc" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"ixd" = ( +/obj/structure/table/holo_woodentable, +/obj/item/reagent_containers/food/drinks/teapot{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"ixA" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iyL" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken6" + }, +/area/space) +"izn" = ( +/obj/machinery/vending/containers, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iAg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/merchant_station) +"iBu" = ( +/obj/machinery/telecomms/hub/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"iEz" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/device/radio/intercom/specops{ + dir = 2 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"iFm" = ( +/obj/machinery/vending/fashionvend, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iHT" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iIb" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"iIK" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "centcom_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 0; + pixel_y = -24; + tag_door = "centcom_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/holding) +"iIM" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/device/paint_sprayer, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iIY" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iKe" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"iLo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iLL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"iLP" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"iMs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"iNr" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iNX" = ( +/obj/structure/closet/secure_closet/medical2{ + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"iOY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"iQg" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"iRk" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_centcom_dock_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"iRS" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo/random = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"iSe" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"iTI" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iVg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"iVD" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/merchant_station) +"iXm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"iYo" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"iYJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Holding Cell"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"iZt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jaZ" = ( +/obj/structure/table/reinforced, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jcL" = ( +/obj/structure/table/rack, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/obj/item/tank/emergency/oxygen/double, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jcQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/storage/box/syringes, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jeF" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"jfV" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jgN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jim" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/plating, +/area/merchant_station) +"jjg" = ( +/turf/simulated/floor/plating, +/area/merchant_station) +"jlk" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/escape_shuttle) +"jll" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"joj" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass, +/area/space) +"jow" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations Boarding Pod"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"joL" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jpr" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"jpR" = ( +/obj/machinery/door/airlock{ + id_tag = "rbath"; + name = "Bathroom" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"jpX" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"jqP" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"jrf" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"jrk" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"jrv" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"jsc" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jsi" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/obj/effect/landmark/start{ + name = "Merchant" + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"jtV" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"juO" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"jvv" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8; + icon_state = "corner_white" + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"jyq" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jyr" = ( +/obj/structure/synthesized_instrument/synthesizer/piano{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"jzi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jzQ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"jAI" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"jAX" = ( +/obj/machinery/chemical_dispenser/full, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"jCz" = ( +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jEI" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Green Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"jFe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"jGC" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Court Reporter's Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/space) +"jGN" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"jHa" = ( +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"jHj" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"jHG" = ( +/obj/structure/table/rack, +/obj/item/device/lightreplacer, +/obj/item/device/lightreplacer, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"jIP" = ( +/obj/item/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"jKx" = ( +/obj/item/beach_ball, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"jLF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"jMI" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/door/window/brigdoor/southright, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"jNg" = ( +/obj/machinery/button/blast_door{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "crescent_thunderdome"; + name = "Thunderdome Access"; + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + id_tag = "crescent_vip_shuttle"; + name = "VIP Shuttle Access"; + pixel_x = 6; + pixel_y = -34 + }, +/obj/machinery/button/blast_door{ + id_tag = "CREED"; + name = "Spec Ops Ready Room"; + pixel_x = -6; + pixel_y = -34 + }, +/obj/machinery/turretid{ + pixel_x = 28; + pixel_y = -28; + req_access = list("ACCESS_CENT_GENERAL") + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"jRe" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"jRy" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"jRE" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"jSH" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"jUr" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"jVU" = ( +/obj/effect/wallframe_spawn/reinforced, +/turf/space, +/area/merchant_station) +"jWi" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"jWm" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"jYi" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"jYN" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"jZW" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/circuitboard/borgupload, +/obj/item/stock_parts/circuitboard/aiupload{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"kaj" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor_freezer{ + amount = 50 + }, +/obj/item/stack/tile/floor_freezer{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"kca" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"kcv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kdF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kei" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/beach{ + dir = 4; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"keA" = ( +/obj/effect/wingrille_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/merchant_station) +"keE" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kfk" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"khR" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"kim" = ( +/obj/machinery/vending/boozeomat, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"kiH" = ( +/mob/living/simple_animal/tindalos{ + name = "Eddy" + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"kiL" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kjk" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"kky" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/storage/box/trackimp, +/obj/item/storage/box/cdeathalarm_kit, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"kkN" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"kmU" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"knz" = ( +/obj/effect/paint/sol, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"knE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kpQ" = ( +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kqd" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1; + start_pressure = 740.5 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/merchant_station) +"kqX" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken1" + }, +/area/space) +"ksq" = ( +/turf/simulated/floor/holofloor/lino, +/area/space) +"ksG" = ( +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"kuG" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"kvN" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/floor{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"kyE" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 8; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"kyZ" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"kAO" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"kAQ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kBa" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kBb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kBZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"kEh" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"kFc" = ( +/obj/machinery/computer/shuttle_control{ + dir = 8; + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Administration" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"kFu" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/carpet, +/area/merchant_station) +"kFG" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"kGn" = ( +/obj/structure/table/rack, +/obj/item/storage/bag/cash, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kLu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"kNY" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"kPj" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/holding) +"kPy" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kPL" = ( +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"kQC" = ( +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kRQ" = ( +/obj/structure/table/standard, +/obj/item/surgicaldrill, +/obj/item/circular_saw, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kSw" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"kSS" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"kSY" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"kTl" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"kUH" = ( +/obj/structure/closet/secure_closet/medical3{ + pixel_x = -5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"kXc" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"kYz" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/merchant_station) +"kYU" = ( +/obj/effect/floor_decal/beach{ + dir = 8; + icon_state = "beachborder" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"lcs" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome) +"ldj" = ( +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"lex" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/space) +"lgH" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lhj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ljj" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"ljR" = ( +/obj/item/device/camera, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lkc" = ( +/obj/structure/closet{ + name = "Wardrobe" + }, +/obj/item/clothing/shoes/leather, +/obj/item/clothing/under/blazer, +/obj/item/clothing/under/lawyer/black, +/obj/item/clothing/under/suit_jacket/navy, +/turf/simulated/floor/carpet, +/area/merchant_station) +"lld" = ( +/obj/structure/table/standard, +/obj/item/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/scalpel, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"lmS" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton{ + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"lnW" = ( +/obj/item/pickaxe/diamonddrill, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"loR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lsS" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"lsZ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"luh" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"lyd" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/living) +"lzm" = ( +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/shuttle/merchant/home) +"lzq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"lzK" = ( +/obj/machinery/vending/hydroseeds, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"lAl" = ( +/obj/structure/dispenser, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"lBN" = ( +/obj/structure/table/holo_woodentable, +/obj/item/device/synthesized_instrument/violin{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"lBP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"lEy" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/shuttle/transport1/centcom) +"lEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lJs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lJF" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"lLb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"lMT" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"lPd" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"lQy" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lQG" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"lQQ" = ( +/obj/item/extinguisher, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"lSf" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/melee/energy/axe, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"lSj" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"lSo" = ( +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"lSB" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_ship_dock"; + pixel_x = -24; + pixel_y = 0; + tag_airpump = "merchant_ship_vent"; + tag_chamber_sensor = "merchant_ship_sensor"; + tag_exterior_door = "merchant_ship_exterior"; + tag_interior_door = "merchant_ship_interior" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"lSS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"lTa" = ( +/obj/structure/disposalpipe/segment, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"lTr" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/merchant_station) +"lTJ" = ( +/obj/structure/table/rack, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/gun/energy/stunrevolver, +/obj/item/gun/energy/stunrevolver, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"lUo" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lVy" = ( +/obj/machinery/door/window{ + dir = 2; + name = "AI Core Door" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lVX" = ( +/obj/item/stool, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"lWX" = ( +/obj/structure/table/reinforced, +/obj/item/card/id/captains_spare, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lYN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"lZB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/space) +"max" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"mbx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/merchant_station) +"mdi" = ( +/obj/machinery/tele_pad, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"meI" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"mgi" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"mhi" = ( +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"mhI" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"mjn" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"mkd" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "admin_shuttle_bay_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"mkl" = ( +/turf/unsimulated/wall, +/area/centcom/ferry) +"mld" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/space) +"mmD" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"mnb" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"mnt" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"moK" = ( +/obj/structure/table/holo_woodentable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"mqC" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/simulated/floor/plating, +/area/centcom/holding) +"mqG" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/space) +"mrb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"mrt" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"mrB" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4; + icon_state = "console" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"mrU" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"mtm" = ( +/obj/effect/landmark{ + name = "Commando" + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mvt" = ( +/obj/machinery/status_display, +/turf/unsimulated/wall, +/area/centcom/specops) +"mvJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/conveyor_switch{ + id = "merchantbelt1" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mwc" = ( +/obj/effect/floor_decal/beach/corner, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"mwt" = ( +/obj/machinery/vending/assist, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"myL" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"mzH" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"mAe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mAC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/airless, +/area/merchant_station) +"mBV" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/obj/item/material/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/machinery/camera/network/crescent{ + c_tag = "Crescent Bar East"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"mCs" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"mCw" = ( +/obj/machinery/door/airlock{ + name = "Room A" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"mGE" = ( +/obj/machinery/fabricator/hacked, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mGS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_ship_sensor"; + pixel_x = 28; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"mHo" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"mKU" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/computer/shuttle_control/merchant{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mLL" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"mMg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"mNe" = ( +/obj/item/mop, +/obj/structure/mopbucket, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mNk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"mNR" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/ammo_magazine/box/machinegun, +/obj/item/gun/projectile/automatic/l6_saw, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"mOM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/merchant_station) +"mQc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/floor_decal/corner/blue/three_quarters, +/turf/simulated/floor/tiled, +/area/merchant_station) +"mQp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"mTd" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"mTT" = ( +/obj/structure/table/holo_woodentable, +/obj/item/tray{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/space) +"mVb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"mXi" = ( +/obj/machinery/recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"mXz" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"mZU" = ( +/obj/effect/shuttle_landmark/escape_pod/out/pod3, +/turf/space, +/area/space) +"nat" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/merchant_station) +"nbS" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nbZ" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 4; + icon_state = "beach" + }, +/area/space) +"ncN" = ( +/obj/structure/curtain{ + color = "#cd6889" + }, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/space) +"nfr" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 1; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"ngq" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"ngV" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/holding) +"niT" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/space) +"njh" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"nlW" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"nnD" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "ASSAULT"; + name = "Assault Weapon Storage"; + p_open = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"nnI" = ( +/obj/machinery/door/firedoor, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/merchant_station) +"non" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/space, +/area/merchant_station) +"nqZ" = ( +/obj/machinery/vending/wallmed1{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/item/storage/secure/safe{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"ntZ" = ( +/obj/structure/table/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/emps, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/grenade/smokebomb, +/obj/item/gun/launcher/grenade, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"nzk" = ( +/obj/structure/table/steel, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/merchant_station) +"nAG" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"nBg" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/red, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"nBk" = ( +/obj/machinery/door/firedoor, +/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/merchant_station) +"nBZ" = ( +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"nDg" = ( +/obj/machinery/camera/network/thunder{ + anchored = 0; + c_tag = "Television"; + name = "Movable Camera" + }, +/turf/simulated/floor/tiled, +/area/space) +"nDO" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"nFA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"nGc" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 4; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"nGD" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nGF" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"nHR" = ( +/turf/unsimulated/wall, +/area/centcom/suppy) +"nIB" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"nIC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/computer/cryopod{ + density = 0; + pixel_y = 32 + }, +/obj/item/roller, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"nJu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nKf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"nKw" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"nKy" = ( +/obj/machinery/gibber{ + anchored = 0 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"nLn" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Witness Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/space) +"nMc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"nNk" = ( +/obj/structure/sign/warning/secure_area/armory{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"nOs" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"nPB" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_shuttle) +"nRh" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"nRH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/merchant_station) +"nSv" = ( +/obj/effect/shuttle_landmark/escape_pod/out/pod1, +/turf/space, +/area/space) +"nTW" = ( +/obj/structure/window/holowindow/full, +/turf/simulated/floor/holofloor, +/area/space) +"nUE" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"nWv" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"nWN" = ( +/obj/structure/table/standard, +/obj/item/bonesetter, +/obj/item/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"nXC" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"nZT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"nZW" = ( +/obj/machinery/computer/robotics{ + dir = 4; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"oaw" = ( +/obj/machinery/vending/cola{ + name = "Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"oaW" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/space) +"obn" = ( +/obj/machinery/acting/changer, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"obO" = ( +/obj/machinery/door/airlock/glass{ + name = "Stage" + }, +/turf/simulated/floor, +/area/space) +"ocF" = ( +/obj/machinery/robotic_fabricator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"odt" = ( +/obj/structure/holostool, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"oeC" = ( +/obj/machinery/acting/changer, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"oeN" = ( +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"ofb" = ( +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/rcd, +/obj/item/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd, +/obj/item/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ofF" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"ogi" = ( +/obj/machinery/door/airlock/glass{ + name = "Arrivals Bar" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"oie" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"oif" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 8; + icon_state = "beach" + }, +/area/space) +"oje" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"okp" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "centcom_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/effect/shuttle_landmark/ferry/start, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"opv" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"oqR" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/ferry) +"osh" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/wrench, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"otR" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8; + icon_state = "spline_plain" + }, +/obj/structure/holonet/end, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"otZ" = ( +/obj/machinery/button/blast_door{ + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + pixel_x = 0; + pixel_y = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"ovV" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert1" + }, +/area/space) +"owm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"owq" = ( +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"owu" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/control) +"oww" = ( +/obj/machinery/acting/wardrobe, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"owX" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/obj/item/gun/energy/gun/nuclear, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"oxL" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"oxQ" = ( +/turf/unsimulated/floor{ + dir = 9; + icon_state = "vault" + }, +/area/centcom/specops) +"ozf" = ( +/obj/effect/floor_decal/corner/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"ozU" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"oCH" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + icon_state = "heater" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"oEs" = ( +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"oER" = ( +/obj/machinery/computer/modular/preset/merchant{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"oFU" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/grenade_launcher, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/mounted/plasmacutter, +/obj/item/rig_module/mounted/plasmacutter, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"oGr" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_station_dock"; + pixel_x = -28; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT"); + tag_airpump = "merchant_station_vent"; + tag_chamber_sensor = "merchant_station_sensor"; + tag_exterior_door = "merchant_station_exterior"; + tag_interior_door = "merchant_station_interior"; + tag_interior_sensor = null + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_station_sensor"; + pixel_x = -28; + pixel_y = -10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"oID" = ( +/obj/structure/table/steel, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/spacecash/bundle/c1000, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/random/clipboard, +/turf/simulated/floor/tiled, +/area/merchant_station) +"oIK" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"oJB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"oLw" = ( +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"oMy" = ( +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"oNl" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/space, +/area/space) +"oNm" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"oNu" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Office" + }, +/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/wood, +/area/merchant_station) +"oOV" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"oQS" = ( +/obj/structure/table/holo_woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/obj/item/flame/candle{ + holographic = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"oRg" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"oRM" = ( +/obj/structure/bed/chair/office/light, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"oTf" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "ASSAULT"; + name = "Assault Armor Storage"; + p_open = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"oTl" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/autoinjectors, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/defibrillator/compact/combat/loaded, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"oTO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"oUB" = ( +/obj/machinery/door/airlock/centcom{ + name = "Armory Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"oUW" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 1; + icon_state = "shuttle_chair_preview" + }, +/obj/machinery/light/small, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"oVr" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"oVC" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome - Red Team"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome2) +"oWl" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"oWy" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"oXe" = ( +/obj/item/inflatable_duck, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"oXZ" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/space) +"oYo" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"pbB" = ( +/obj/structure/hygiene/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"pcl" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/control) +"pdD" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"pfy" = ( +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"pga" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/tracker, +/turf/simulated/floor/airless, +/area/merchant_station) +"pgp" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"pgA" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/turf/simulated/floor/carpet, +/area/merchant_station) +"plU" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_access = list("ACCESS_MERCHANT") + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"pmg" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"pmx" = ( +/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/merchant_station) +"pnr" = ( +/turf/simulated/floor/wood, +/area/merchant_station) +"pop" = ( +/obj/machinery/door/airlock/centcom{ + name = "Maintenance Access"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"poR" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"ppg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"ppj" = ( +/obj/structure/table/rack, +/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/plasteel{ + amount = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pqj" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/carpet, +/area/merchant_station) +"pra" = ( +/obj/machinery/flasher{ + id_tag = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"prH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"psq" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pss" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"psC" = ( +/obj/structure/closet/athletic_mixed, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"pvs" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/merchant_station) +"pvv" = ( +/obj/structure/table/woodentable, +/obj/random/single/lighter, +/obj/random/toy, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"pvw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pvZ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"pwa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/sleeping_agent{ + pixel_x = 1 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"pwh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/merchant_station) +"pxS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"pyb" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pye" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"pyz" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"pyJ" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"pyW" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + c_tag = "Green Team"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"pCh" = ( +/obj/machinery/merchant_pad, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pEY" = ( +/obj/effect/floor_decal/stoneborder, +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"pIt" = ( +/mob/living/simple_animal/crab, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"pKJ" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken2" + }, +/area/space) +"pLz" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"pMB" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"pOK" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"pOT" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/living) +"pQI" = ( +/obj/machinery/atmospherics/pipe/vent, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"pQZ" = ( +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome Arena"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "bcircuit" + }, +/area/tdome) +"pRl" = ( +/obj/structure/lattice, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/space, +/area/centcom/holding) +"pTd" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pUu" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/specops) +"pXv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/merchant_station) +"pYb" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"pYu" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/merchant_station) +"pYL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"pYY" = ( +/obj/structure/closet{ + name = "emergency response team wardrobe" + }, +/obj/item/clothing/under/syndicate/combat, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"pZq" = ( +/turf/unsimulated/wall, +/area/centcom/living) +"pZO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"qfy" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom) +"qfW" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"qgz" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"qgJ" = ( +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"qhv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle"; + pixel_x = -24; + pixel_y = 0; + tag_door = "centcom_shuttle_hatch" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"qip" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"qja" = ( +/obj/effect/paint/black, +/turf/simulated/wall/r_titanium, +/area/shuttle/administration/centcom) +"qjx" = ( +/turf/simulated/floor/carpet, +/area/merchant_station) +"qkH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"qmm" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qnk" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/sol, +/obj/effect/paint/black, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"qnT" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/captain, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qot" = ( +/obj/structure/closet{ + name = "Wardrobe" + }, +/obj/item/clothing/shoes/black, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/skirt, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"qoA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/merchant_station) +"qpi" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"qrK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qsd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"qsX" = ( +/obj/machinery/fabricator/hacked, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"quz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"quS" = ( +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"qxw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qxX" = ( +/obj/machinery/atm{ + pixel_y = 24 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"qyk" = ( +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"qyJ" = ( +/obj/machinery/vending/engineering, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"qzm" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"qAj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qAN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"qAW" = ( +/obj/machinery/computer/shuttle_control/specops{ + dir = 2 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"qBa" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"qBg" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"qBK" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qDI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"qEz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qFI" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/beach/sand{ + icon_state = "seashallow" + }, +/area/centcom/holding) +"qHo" = ( +/obj/effect/floor_decal/corner/green{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qHU" = ( +/obj/structure/table/rack, +/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 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qJm" = ( +/obj/structure/table/rack, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"qKr" = ( +/obj/machinery/telecomms/processor/preset_cent, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"qLt" = ( +/obj/machinery/computer/prisoner{ + dir = 1; + name = "Implant Management" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"qLH" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"qLM" = ( +/obj/structure/table/reinforced, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"qMP" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 9; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"qNu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"qOO" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"qPC" = ( +/obj/machinery/vending/cigarette{ + name = "cigarette machine"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"qXn" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"qZe" = ( +/obj/machinery/door/airlock/centcom{ + name = "Research Facility"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/test) +"rar" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"rba" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"rcG" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"rcO" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/ammo_magazine/smg_top/rubber, +/obj/item/gun/projectile/automatic/sec_smg, +/obj/item/gun/projectile/automatic/sec_smg, +/obj/item/gun/projectile/automatic/sec_smg, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rfY" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/specops/centcom) +"rgK" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/centcom/holding) +"rie" = ( +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"rij" = ( +/obj/structure/bed/chair/wood{ + dir = 4; + holographic = 1; + icon_state = "wooden_chair_preview" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"riw" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"rko" = ( +/obj/machinery/door/airlock/centcom{ + name = "Engineering Special Operations"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rns" = ( +/obj/machinery/computer/operating{ + dir = 8; + icon_state = "computer" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"rnP" = ( +/obj/item/device/radio/intercom/specops{ + dir = 2; + pixel_y = 22 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"roA" = ( +/obj/effect/floor_decal/stoneborder/corner, +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"rpv" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet, +/area/merchant_station) +"rqG" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"rqT" = ( +/obj/machinery/biogenerator, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"rsb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"rtd" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"rtr" = ( +/obj/structure/table/standard, +/obj/item/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"rvu" = ( +/obj/item/aiModule/nanotrasen, +/obj/item/aiModule/reset, +/obj/item/aiModule/freeformcore, +/obj/item/aiModule/protectStation, +/obj/item/aiModule/quarantine, +/obj/item/aiModule/paladin, +/obj/item/aiModule/robocop, +/obj/item/aiModule/safeguard, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rvN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"rwj" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/wood, +/area/space) +"rwq" = ( +/turf/simulated/floor/holofloor/space, +/area/space) +"rze" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"rzF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/largecrate, +/obj/random/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"rAB" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"rCx" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 1; + icon_state = "beach" + }, +/area/space) +"rCy" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"rDI" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/merc, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rFf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"rFn" = ( +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/item/clothing/head/bandana{ + pixel_y = -10 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/beach/sand{ + icon_state = "desert1" + }, +/area/centcom/holding) +"rFu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"rJI" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"rLz" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/merchant_station) +"rLM" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"rMv" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations Command"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rMw" = ( +/obj/machinery/door/blast/regular{ + id_tag = "ert_synth_equipment"; + name = "Synthetics Modification Equipment" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"rNA" = ( +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/wall, +/area/space) +"rOt" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + name = "exterior access button"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "merchant_ship_dock"; + name = "interior access button"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 2; + id_tag = "merchant_ship_vent" + }, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"rOV" = ( +/obj/machinery/vending/robotics, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"rPy" = ( +/obj/structure/curtain{ + color = "#68ccab" + }, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken6" + }, +/area/space) +"rRg" = ( +/obj/structure/table/rack, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/obj/item/plastique, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rRx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"rTE" = ( +/obj/machinery/shieldwallgen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"rUq" = ( +/obj/machinery/door/airlock/centcom{ + name = "Arrivals Processing"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"rUG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"rVA" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"rXm" = ( +/turf/simulated/wall/sandstone, +/area/space) +"rYC" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton{ + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"scR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sdh" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"sdG" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 4; + icon_state = "shuttle_chair_preview" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"seD" = ( +/turf/simulated/wall/prepainted, +/area/merchant_station) +"sfj" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"sfr" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/space) +"sfS" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/sign/warning/docking_area, +/turf/space, +/area/space) +"shj" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beachcorner" + }, +/area/centcom/holding) +"shE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket{ + amount_per_transfer_from_this = 50 + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"siP" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sjE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/surgery, +/obj/item/reagent_containers/glass/bottle/stoxin, +/obj/item/reagent_containers/syringe, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"skA" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_shuttle_port_hatch"; + locked = 1; + name = "Port Docking Hatch" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/specops/centcom) +"skB" = ( +/obj/structure/table/reinforced, +/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, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"smd" = ( +/obj/machinery/optable, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"smK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"smO" = ( +/turf/simulated/floor/holofloor/snow, +/area/space) +"sos" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "merchantshuttle"; + name = "Merchant Window Shutters"; + opacity = 0 + }, +/obj/effect/wallframe_spawn/reinforced/titanium, +/obj/effect/paint/silver, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"soU" = ( +/obj/machinery/hologram/holopad/longrange, +/turf/simulated/floor/carpet/blue, +/area/shuttle/merchant/home) +"spx" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled, +/area/space) +"spN" = ( +/obj/structure/table/rack, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/obj/item/stack/material/rods{ + amount = 50 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"sqz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"srS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "merchantbase"; + name = "Merchant Loading Shutters"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/merchant_station) +"ssc" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/clipboard, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"sse" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/clothing/glasses/night, +/obj/item/storage/box/handcuffs, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/obj/item/clothing/glasses/tacgoggles, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ssy" = ( +/obj/machinery/door/window/southright, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/merchant_station) +"stt" = ( +/obj/structure/table/reinforced, +/obj/random/loot, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"suC" = ( +/obj/structure/bed/chair/wood{ + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"svD" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"swv" = ( +/obj/structure/table/rack, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/obj/item/stack/material/marble{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"swW" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 1; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"sxw" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"syn" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"syy" = ( +/obj/structure/closet/crate, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sBb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sBh" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert4" + }, +/area/space) +"sBs" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"sDC" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/gun/nuclear, +/obj/prefab/hand_teleporter, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sDZ" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"sEn" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"sFn" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/space) +"sFu" = ( +/obj/structure/table/rack, +/obj/item/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/glasses/science, +/obj/item/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sGh" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"sIM" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"sMD" = ( +/obj/effect/shuttle_landmark/escape_pod/out/pod4, +/turf/space, +/area/space) +"sNG" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/bamboo, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/merchant_station) +"sNV" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"sOc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"sOq" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"sRb" = ( +/obj/structure/table/standard, +/obj/item/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"sXo" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/obj/item/storage/backpack/ert/security, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"sZJ" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"sZW" = ( +/obj/structure/hygiene/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 0 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"tbj" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 4; + icon_state = "burst_r"; + name = "propulsion" + }, +/turf/space, +/area/shuttle/merchant/home) +"tci" = ( +/obj/machinery/pipedispenser/disposal, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"tcR" = ( +/obj/structure/closet/secure_closet/medical1{ + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"tda" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"teP" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"tgT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tjl" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/flame/lighter/zippo/random, +/obj/item/storage/fancy/cigarettes, +/obj/item/material/ashtray/bronze{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/holding) +"tkd" = ( +/obj/machinery/power/solar_control/autostart, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tkw" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/ert, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"tle" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn" + }, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"tna" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8; + icon_state = "console" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tnX" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"too" = ( +/obj/machinery/camera/network/ert{ + c_tag = "Assault Armor North" + }, +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"tpD" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/creed) +"tpQ" = ( +/obj/effect/floor_decal/stoneborder{ + dir = 4; + icon_state = "stoneborder" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/space) +"tqo" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"tqO" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"trb" = ( +/obj/structure/table/woodentable, +/obj/item/material/ashtray/bronze, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/clothing/mask/smokable/cigarette/cigar/havana, +/turf/simulated/floor/wood, +/area/merchant_station) +"trC" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "merchant_station_exterior"; + locked = 1; + name = "Station Exterior" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"trW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"tsV" = ( +/obj/item/storage/fancy/cigarettes, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tta" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1; + start_pressure = 740.5 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"ttb" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"ttI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"twi" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/engivend{ + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"twq" = ( +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken3" + }, +/area/space) +"twO" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"twS" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"twU" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/obj/item/card/id{ + access = list(301); + desc = "A visitor's access card, this one is for the Merchant's Station."; + icon_state = "guest"; + name = "Visitor's Card - Merchant's Station" + }, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"typ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert2" + }, +/area/space) +"tyX" = ( +/obj/machinery/papershredder, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"tCn" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 8; + icon_state = "beachcorner" + }, +/area/space) +"tCu" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/shoes/sandal/xeno/caligae/black, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"tCD" = ( +/obj/machinery/suit_storage_unit/standard_unit{ + req_access = list("ACCESS_MERCHANT") + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tFL" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/red/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"tGq" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tIf" = ( +/turf/unsimulated/beach/sand{ + dir = 6; + icon_state = "beach" + }, +/area/centcom/holding) +"tIX" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"tJk" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/random/handgun, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tLD" = ( +/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/merchant_station) +"tML" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"tMS" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"tOl" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"tPy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/merchant_station) +"tQJ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/silver{ + amount = 50 + }, +/obj/item/stack/material/silver{ + amount = 50 + }, +/obj/item/stack/material/silver{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"tVs" = ( +/obj/structure/table/reinforced, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"tWl" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"tYg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/merchant_station) +"tYy" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"tYI" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"tZw" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"tZT" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + dir = 8; + id_tag = "cargo_bay_centcom"; + pixel_x = 25 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/living) +"uaI" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"ube" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 4; + icon_state = "beachcorner" + }, +/area/space) +"ubn" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 10; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/grass, +/area/space) +"uch" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/obj/item/modular_computer/pda/ert, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uci" = ( +/turf/simulated/floor/holofloor/concrete, +/area/space) +"udu" = ( +/turf/simulated/floor/holofloor/grass, +/area/space) +"ued" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/hypospray, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"ukd" = ( +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"ukt" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"ukZ" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/under/rank/psych/turtleneck{ + desc = "A turqouise turtleneck and a pair of dark blue slacks."; + name = "turtleneck" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"uni" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"uol" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"upo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6; + icon_state = "spline_plain" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"upA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"upW" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"uqz" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"usQ" = ( +/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/airless, +/area/merchant_station) +"utc" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"utw" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/space) +"uug" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uyD" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"uzD" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"uBO" = ( +/obj/machinery/light, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"uCF" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/space) +"uDO" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + name = "Warehouse" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/merchant_station) +"uEq" = ( +/obj/structure/window/reinforced/crescent, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"uES" = ( +/obj/structure/bed/chair/wood{ + dir = 1; + holographic = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"uFd" = ( +/obj/machinery/door/blast/regular{ + id_tag = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"uGd" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"uGD" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"uGH" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"uGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/merchant_station) +"uHy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"uIO" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken4" + }, +/area/space) +"uJa" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uKR" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + opacity = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + id_tag = "CREED"; + name = "Ready Room"; + p_open = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/specops) +"uOk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"uOv" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/specops) +"uOw" = ( +/obj/machinery/vending/hydronutrients, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"uPs" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/stack/material/plastic{ + amount = 10 + }, +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/item/device/paint_sprayer, +/turf/simulated/floor/plating, +/area/merchant_station) +"uQF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1; + icon_state = "spline_fancy" + }, +/turf/simulated/floor/holofloor/lino, +/area/space) +"uSn" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"uSq" = ( +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/living) +"uTO" = ( +/obj/structure/hygiene/shower{ + dir = 4; + icon_state = "shower" + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"uUG" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uWI" = ( +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/gloves/insulated, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/taperoll/engineering, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"uXg" = ( +/obj/structure/sign/warning/secure_area, +/turf/unsimulated/wall, +/area/centcom/control) +"uXI" = ( +/obj/machinery/vending/props, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"vam" = ( +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"vaM" = ( +/obj/machinery/button/blast_door{ + id_tag = "NTrasen"; + name = "Hull Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"vcd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vcu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vcE" = ( +/obj/machinery/vending/medical, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"vev" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"vgC" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/centcom/living) +"vhs" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"vkh" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/suppy) +"vlU" = ( +/obj/machinery/alarm{ + frequency = 1439; + pixel_y = 23; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"vlY" = ( +/obj/item/storage/secure/safe{ + pixel_x = -25 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet, +/area/merchant_station) +"voN" = ( +/obj/machinery/jukebox, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"vrt" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"vrz" = ( +/turf/unsimulated/wall, +/area/centcom/specops) +"vrD" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"vsU" = ( +/obj/item/inflatable_duck, +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"vtp" = ( +/obj/machinery/door/window/holowindoor{ + dir = 4; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"vvL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander Quarters"; + opacity = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"vwu" = ( +/obj/item/reagent_containers/food/snacks/grown/mushroom/libertycap, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"vyD" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/obj/item/tank/emergency/oxygen/double, +/turf/simulated/floor/plating, +/area/merchant_station) +"vDa" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"vET" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"vFa" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/merchant_station) +"vFh" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "closed"; + id_tag = "specops_centcom_dock_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"vGb" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"vGW" = ( +/turf/simulated/floor/holofloor/carpet, +/area/space) +"vHx" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"vHR" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"vKJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vMU" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"vOk" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/unsimulated/wall, +/area/centcom/control) +"vPV" = ( +/obj/effect/floor_decal/corner/lime/three_quarters{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"vQt" = ( +/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/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"vQP" = ( +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"vTa" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"vTe" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"vVr" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/space) +"vWS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"vXR" = ( +/obj/machinery/newscaster{ + pixel_y = -27 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"vYS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"vZQ" = ( +/obj/machinery/door/airlock{ + name = "Room B" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"vZY" = ( +/obj/machinery/libraryscanner, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"wac" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"waI" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"waQ" = ( +/turf/unsimulated/wall, +/area/centcom/creed) +"wbQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "merchantbase"; + name = "Merchant Loading Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wcr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"whq" = ( +/turf/unsimulated/beach/sand{ + icon_state = "seashallow" + }, +/area/centcom/holding) +"whJ" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"wjz" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"wjF" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/ivbag/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/ivbag/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/reagent_containers/ivbag/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"wjR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wkp" = ( +/turf/unsimulated/wall, +/area/tdome) +"wkD" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"wlb" = ( +/obj/machinery/bookbinder, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"wlg" = ( +/turf/simulated/floor/holofloor/tiled, +/area/space) +"wll" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/plating, +/area/shuttle/merchant/home) +"wlN" = ( +/obj/structure/closet/secure_closet/bar{ + req_access = list("ACCESS_BAR") + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/holding) +"wnb" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/creed) +"wnu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"wnA" = ( +/obj/item/stool{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"wpt" = ( +/obj/machinery/microwave, +/obj/structure/table/reinforced, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wqi" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"wtF" = ( +/obj/structure/bookcase, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wtJ" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"wvO" = ( +/obj/structure/table/holotable, +/obj/item/toy/ringbell, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"wwt" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/space, +/area/space) +"wwH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"wwP" = ( +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/window/reinforced/crescent, +/turf/unsimulated/wall, +/area/space) +"wxr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/holding) +"wxw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"wys" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "desert_dug" + }, +/area/space) +"wyF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"wyG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/deck/cards, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wAs" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/green/three_quarters, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"wAP" = ( +/obj/item/beach_ball/holoball, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"wBk" = ( +/obj/machinery/hologram/holopad, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"wBC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"wCS" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/space) +"wDq" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Jury Box" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"wET" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/wood, +/area/merchant_station) +"wEY" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass, +/area/space) +"wFX" = ( +/turf/simulated/floor/holofloor/beach/sand{ + dir = 10; + icon_state = "beach" + }, +/area/space) +"wGb" = ( +/turf/simulated/floor/tiled, +/area/merchant_station) +"wGW" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wHY" = ( +/obj/structure/holostool, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet{ + dir = 8 + }, +/area/space) +"wId" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"wIl" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass, +/area/space) +"wKi" = ( +/obj/machinery/vending/cigarette{ + prices = list() + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/administration/centcom) +"wKR" = ( +/obj/machinery/door/airlock/glass{ + name = "Lounge" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/merchant_station) +"wLa" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"wLv" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/living) +"wLE" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wNb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + icon_state = "heater" + }, +/obj/effect/paint/silver, +/turf/simulated/wall/r_titanium, +/area/shuttle/merchant/home) +"wNr" = ( +/obj/item/storage/mirror{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"wNx" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/centcom/living) +"wOJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"wOU" = ( +/obj/machinery/button/blast_door{ + dir = 1; + icon_state = "computer"; + id_tag = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"wQR" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit" + }, +/turf/simulated/floor/wood, +/area/shuttle/merchant/home) +"wRi" = ( +/obj/item/handcuffs/cable/tape, +/turf/simulated/floor/asteroid, +/area/merchant_station) +"wRq" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"wRr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright, +/obj/machinery/light, +/obj/structure/closet/walllocker/emerglocker/south, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"wUR" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"wUU" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"wZU" = ( +/obj/effect/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"xaa" = ( +/obj/effect/floor_decal/corner/lime, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"xcR" = ( +/turf/unsimulated/floor{ + dir = 9; + icon_state = "vault" + }, +/area/centcom/ferry) +"xeJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"xeT" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"xeX" = ( +/turf/simulated/wall/r_titanium, +/area/shuttle/transport1/centcom) +"xeY" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"xfb" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"xfW" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xjd" = ( +/obj/machinery/door/unpowered/simple/wood, +/turf/simulated/floor/holofloor/wood, +/area/space) +"xjt" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"xmi" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xmB" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random/powercell, +/obj/item/stock_parts/computer/hard_drive/portable/merchant, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list("ACCESS_MERCHANT") + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xnI" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"xnP" = ( +/obj/structure/table/holotable, +/obj/item/device/megaphone, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"xnW" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xog" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome/tdome1) +"xpo" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/space) +"xrj" = ( +/obj/structure/bed/chair/office/comfy/black{ + dir = 4; + icon_state = "comfyofficechair_preview" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/merchant/home) +"xsg" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 16 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/merchant_station) +"xsF" = ( +/obj/effect/floor_decal/stoneborder/corner{ + dir = 1; + icon_state = "stoneborder_c" + }, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"xsU" = ( +/obj/effect/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/transport1/centcom) +"xvw" = ( +/obj/effect/floor_decal/corner/lime/three_quarters, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"xvS" = ( +/obj/machinery/porta_turret/crescent, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xwM" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand{ + icon_state = "desert2" + }, +/area/centcom/holding) +"xxj" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"xxN" = ( +/obj/structure/table/holo_woodentable, +/turf/simulated/floor/holofloor/tiled/stone, +/area/space) +"xyg" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 4; + icon_state = "corner_white" + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"xzR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"xBU" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/handcuffs, +/obj/item/storage/pill_bottle/dice, +/obj/item/deck/cards, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"xDg" = ( +/obj/structure/iv_drip, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/holding) +"xDh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xDr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Bridge"; + opacity = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xDI" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + glass = 1380; + icon_state = "closed"; + id_tag = "centcom_shuttle_bay_door"; + locked = 1; + name = "Transport Airlock" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/holding) +"xEe" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "merchantbelt2" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"xFT" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) +"xHM" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/space) +"xHR" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xIV" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape_shuttle) +"xKc" = ( +/obj/structure/curtain, +/turf/simulated/floor/holofloor/wood{ + icon_state = "wood_broken4" + }, +/area/space) +"xKm" = ( +/obj/effect/floor_decal/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/merchant/home) +"xMR" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + opacity = 1 + }, +/obj/machinery/door/blast/regular{ + id_tag = "crescent_checkpoint_access"; + name = "Crescent Checkpoint" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xOl" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/centcom/holding) +"xPt" = ( +/obj/machinery/optable, +/turf/simulated/floor/shuttle/white, +/area/shuttle/administration/centcom) +"xPJ" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/space) +"xQD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xSD" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + name = "Blocker" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"xST" = ( +/obj/structure/table/rack, +/obj/item/rig/military/equipped, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xUF" = ( +/obj/effect/decal/cleanable/ash, +/obj/machinery/conveyor{ + dir = 1; + id = "merchantbelt1" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"xUI" = ( +/obj/machinery/r_n_d/server/centcom, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/centcom/control) +"xVB" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/turf/space, +/area/merchant_station) +"xWm" = ( +/turf/space, +/area/centcom/ferry) +"xXd" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/test) +"xXq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/centcom/specops) +"xYo" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/merchant_station) +"xZq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"xZY" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 25; + pixel_y = 0; + tag_door = "admin_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom) +"ybA" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/circuitboard/smes, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/centcom/specops) +"ybO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/merchant_station) +"yda" = ( +/obj/machinery/atmospherics/valve, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) +"ydZ" = ( +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled, +/area/merchant_station) +"yeN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/merchant_station) +"yeU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"yfR" = ( +/obj/machinery/computer/shuttle_control{ + req_access = list("ACCESS_CENT_GENERAL"); + shuttle_tag = "Centcom" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/simulated/floor/shuttle/blue, +/area/shuttle/transport1/centcom) +"yfY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/merchant_station) +"yiv" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/shuttle/escape_shuttle) +"yiF" = ( +/obj/machinery/vending/dinnerware, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "white" + }, +/area/centcom/living) +"yiJ" = ( +/obj/structure/bed/chair/shuttle/black, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "specops_shuttle_port"; + name = "port docking hatch controller"; + pixel_x = 0; + pixel_y = 24; + tag_door = "specops_shuttle_port_hatch" + }, +/obj/machinery/light/small{ + dir = 1; + icon_state = "bulb1" + }, +/turf/simulated/floor/shuttle/red, +/area/shuttle/specops/centcom) +"yjl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/merchant_station) +"yjn" = ( +/obj/effect/floor_decal/beach/corner{ + dir = 8; + icon_state = "beachbordercorner" + }, +/turf/simulated/floor/holofloor/concrete, +/area/space) +"ylQ" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/living) +"ylZ" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeadmin) + +(1,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(2,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(3,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(4,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(5,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(6,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(7,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(8,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(9,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(10,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(11,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(12,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(13,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(14,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(15,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +wwt +aDK +sfS +aab +aab +aab +aab +aab +aab +aab +aab +aab +sfS +wwt +aDK +aDK +wwt +aDK +aDK +aDK +aDK +aDK +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(16,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +aab +ach +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ach +aab +aab +aab +aab +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(17,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +amB +ach +ach +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ach +aab +pga +aab +ach +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(18,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +ach +aab +aab +ach +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +gbi +gbi +gAq +gbi +gbi +gbi +gbi +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(19,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +seD +jVU +jVU +jVU +jVU +seD +aab +aab +lzm +iSe +iSe +iSe +lzm +aab +aab +aab +hKJ +usQ +usQ +lLb +uGL +uGL +uGL +uGL +grR +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(20,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +seD +seD +waI +qmm +mKU +mQc +jVU +aab +aab +sos +qkH +ezr +lzq +gal +aab +aab +aab +aab +aab +ach +gAq +aab +aab +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(21,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +dBB +dBB +pTd +wGb +wLE +tJk +jVU +aab +aab +sos +fMA +otZ +myL +gal +aab +aab +aab +aab +gbi +gbi +gAq +gbi +gbi +gbi +gbi +ach +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(22,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +nIC +yjl +gvu +qrK +sOc +stt +jVU +aab +aab +sos +aSO +soU +cLk +gal +aab +aab +aab +hKJ +usQ +usQ +lLb +uGL +uGL +uGL +uGL +grR +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(23,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +eUy +xjt +hwN +jCz +rFf +hAX +jVU +aab +aab +lzm +nqZ +oEs +ftO +lzm +aab +aab +aab +aab +ach +aab +gAq +ach +aab +ach +ach +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(24,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +seD +seD +seD +seD +keA +oNu +seD +seD +non +lzm +lzm +lzm +wQR +lzm +lzm +lzm +aab +aab +aab +gbi +gbi +gAq +gbi +gbi +gbi +gbi +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(25,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +nat +jRe +mbx +voN +qip +rRx +seD +aab +aab +lzm +bTF +lSB +wId +sqz +dEC +lzm +aab +aab +hKJ +usQ +usQ +lLb +uGL +uGL +uGL +uGL +grR +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(26,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +ibR +qjx +rpv +iwz +pnr +rRx +jVU +aab +lzm +lzm +bTF +wId +wId +wId +uaI +lzm +lzm +aab +aab +aab +ach +gAq +ach +aab +aab +ach +ach +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(27,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +ibR +qjx +rpv +gHg +cpS +iAg +jVU +aab +wNb +lzm +bTF +wId +hfd +xrj +ssc +lzm +wNb +aab +aab +aab +mAC +lSS +aab +aab +ach +ach +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(28,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +sNG +qjx +pnr +pnr +pnr +lSo +jVU +aab +tbj +lzm +lzm +fCk +eqW +wRr +lzm +lzm +bAG +aab +ach +ach +ach +aPr +aab +ach +ach +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(29,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +seD +ahh +fjm +pnr +pnr +pvs +trb +jVU +aab +aab +sos +pyJ +kyZ +xKm +fnk +kmU +sos +aab +aab +ach +seD +gpe +bQo +gpe +seD +amB +aab +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(30,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +seD +seD +seD +seD +vlU +pnr +pvs +pwh +jVU +aab +aab +sos +pyJ +xxj +oeN +qDI +sIM +sos +aab +xVB +seD +seD +bak +iIY +tkd +seD +amB +amB +aab +aab +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(31,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +lkc +vlY +pqj +seD +eYL +pnr +cnG +tYg +jVU +non +aab +lzm +pyJ +xxj +mNk +bil +aAH +lzm +aab +ach +gpe +uPs +cYW +scR +iVD +seD +seD +amB +amB +eyl +fTr +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(32,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +prH +qjx +qjx +mCw +pnr +afI +wET +pye +seD +aab +aab +lzm +pyJ +xxj +mNk +qDI +kmU +lzm +ach +ach +gpe +xnW +dEm +iLo +mOM +bRZ +seD +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(33,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +jsi +kFu +pgA +seD +pnr +nnI +nnI +qoA +seD +hMM +aab +lzm +aAH +aEv +mNk +qDI +sIM +lzm +hMM +gpe +gpe +twi +jjg +amO +yfY +tML +ybO +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(34,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +seD +seD +seD +seD +seD +pnr +wKR +wGb +qAj +nUE +jVU +aab +lzm +qLM +xxj +oeN +bil +aAH +lzm +seD +mGE +exW +bMD +wGb +vcd +eKq +dzy +ehC +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(35,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +seD +qot +pvv +seD +vZQ +seD +siP +wGb +bHQ +jVU +aab +lzm +fju +xxj +oeN +qDI +kmU +lzm +seD +tnX +vYS +gKP +wGb +gin +xzR +iZt +byM +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(36,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +seD +kPL +aCU +aDp +aCU +seD +dHN +wGb +bHQ +jVU +aab +lzm +jMI +ekb +upA +qDI +ipJ +lzm +seD +xmB +kcv +xQD +gAN +wyF +cMT +pYL +kqd +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(37,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +seD +cwp +vFa +bBi +cZm +seD +loR +wGb +bHQ +jVU +aab +lzm +lzm +oYo +ibS +oYo +lzm +lzm +seD +tCD +dih +wOJ +bpF +rJI +nRH +jim +tta +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(38,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +seD +seD +seD +seD +seD +seD +lTr +vcu +bHQ +jVU +jVU +aab +lzm +wll +rba +ldj +lzm +seD +seD +seD +kdF +seD +rLz +vyD +wkD +wkD +seD +seD +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(39,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +uTO +sZW +seD +seD +hVv +bHQ +wGb +jVU +aab +lzm +rOt +mGS +drV +cay +trC +oGr +nnI +bHQ +seD +seD +seD +seD +seD +seD +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(40,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +seD +xsg +kiH +fcY +jpR +wGW +bzZ +fQb +jVU +aab +lzm +lzm +lzm +lzm +lzm +seD +gCZ +nnI +wcr +seD +amB +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(41,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +dGB +gsd +bfj +hHa +iVg +seD +ydZ +bHQ +lJs +jVU +jVU +hMM +seD +seD +seD +hMM +seD +fHw +seD +bHQ +seD +seD +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(42,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +hvp +fIL +seD +jAI +seD +whJ +seD +ixA +fdV +hil +wjR +qrK +qrK +qrK +qrK +qrK +tgT +qrK +cSX +vKJ +dMC +eYF +seD +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(43,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +hvp +hvp +seD +cfA +seD +pLz +seD +kiL +nJu +wGb +tLD +wGb +srS +owm +owm +owm +lhj +wGb +wcr +eWT +pyb +seD +seD +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(44,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +hvp +wRi +seD +cGY +cGY +cGY +cGY +cGY +kQC +qXn +tLD +wGb +seD +hcs +wbQ +hcs +seD +hjw +pmx +kYz +pXv +seD +amB +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(45,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +hvp +hvp +fTH +hvp +cGY +dLx +dLx +dLx +cGY +cGY +seD +nBk +uDO +seD +xDh +cCS +fea +seD +xmi +apw +seD +seD +seD +seD +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(46,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +vwu +hvp +hvp +hvp +cGY +dkF +ttI +oLw +hkM +cGY +fpE +mAe +jfV +tPy +cUI +dcN +yeN +pss +jfV +xZq +hjK +iTI +qBK +bZC +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(47,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +vwu +hvp +amB +cGY +axK +xYo +oLw +twU +cGY +nbS +bKv +wGb +wGb +icp +cCS +fQx +wGb +wGb +bKv +wGb +sBb +sBb +wGb +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(48,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +sEn +sEn +oLw +plU +cGY +kpQ +nJu +wGb +iFm +seD +cCS +seD +jGN +wGb +nJu +ukZ +nGD +qHU +nzk +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(49,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +hZJ +iOY +oLw +oLw +dor +wGb +wGb +wGb +wGb +eXe +xEe +seD +fDu +wGb +wGb +ppj +nGD +spN +pYu +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(50,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +rzF +gge +gge +cGY +cGY +wGb +wGb +wGb +wGb +ssy +xEe +seD +psq +mvJ +pvw +wGb +jjg +jjg +dEm +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(51,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +cGY +cGY +cGY +cGY +cGY +seD +kGn +oID +oER +pCh +seD +cCS +xUF +auD +nDO +fsC +cah +oIK +dwt +eNG +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(52,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +seD +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(53,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +amB +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(54,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +eyl +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(55,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(56,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(57,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(58,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(59,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(60,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(61,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(62,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(63,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(64,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(65,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(66,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(67,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(68,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(69,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(70,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +bhY +bhY +iNr +lzK +uOw +vcE +rOV +dac +fDo +iHT +iRS +izn +hFA +oeC +uXI +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(71,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +bhY +fkv +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +vXR +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(72,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +oww +cfX +aAl +aAl +aAl +aAl +aAl +obO +aAl +aAl +aAl +aAl +aAl +cfX +iIM +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(73,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +iIM +cfX +aAl +eBW +eBW +gox +eBW +eBW +eBW +gox +eBW +eBW +aAl +cfX +kvN +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(74,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +hPf +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +kaj +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(75,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +kaj +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +qJm +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(76,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qJm +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +hPf +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(77,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +hPf +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +gFt +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(78,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +gFt +cfX +aAl +spx +eBW +eBW +eBW +eBW +eBW +eBW +eBW +bVS +aAl +cfX +jrv +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(79,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +jrv +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +aPe +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(80,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +aPe +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +gAU +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(81,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +gAU +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +lsZ +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(82,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +lsZ +cfX +obO +eBW +eBW +eBW +eBW +nDg +eBW +eBW +eBW +eBW +obO +cfX +hEf +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(83,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +hEf +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +xPJ +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(84,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +xPJ +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +swv +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(85,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +too +bmx +vrz +cEK +bmx +cEK +bmx +cEK +hIU +vrz +vrz +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +swv +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +gYp +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(86,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +cCk +cCk +oTf +cCk +cCk +cCk +cCk +cCk +cCk +cCk +cCk +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +gYp +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +tQJ +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(87,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +kNY +cCk +vrz +cCk +cCk +cCk +cCk +cCk +cCk +cCk +cCk +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +tQJ +cfX +aAl +spx +eBW +eBW +eBW +eBW +eBW +eBW +eBW +bVS +aAl +cfX +aEU +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(88,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +oxQ +uug +vrz +aRN +aRN +lnW +aRN +aRN +oxQ +oxQ +uug +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +nKy +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +kFG +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(89,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +vrz +vrz +oTf +vrz +vrz +vrz +vrz +dTJ +dTJ +vrz +rMv +rMv +vrz +vrz +vrz +vrz +vrz +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +tyX +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +jWm +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(90,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +mNR +nnD +kSS +aAR +kSS +fUv +dTJ +clD +xST +oFU +kSS +kSS +dTJ +jcQ +kSS +kSS +hbQ +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +mXi +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +wlb +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(91,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +vrz +vrz +kSS +kSS +kSS +sse +dTJ +kky +kSS +kSS +kSS +kSS +dTJ +ued +kSS +kSS +hbQ +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qgJ +cfX +aAl +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +eBW +aAl +cfX +bvj +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(92,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +rRg +kSS +kSS +kSS +kSS +sXo +dTJ +cjj +kSS +kSS +kSS +kSS +dTJ +oTl +kSS +kSS +fnf +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +lBP +cfX +aAl +eBW +eBW +fNw +eBW +eBW +eBW +fNw +eBW +eBW +aAl +cfX +vZY +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(93,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +vrz +rcO +kSS +kSS +kSS +kSS +cJS +dTJ +tkw +kSS +kSS +kSS +kSS +dTJ +qpi +kSS +kSS +hTb +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +fpu +cfX +aAl +aAl +aAl +aAl +aAl +obO +aAl +aAl +aAl +aAl +aAl +cfX +lBP +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(94,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +qfy +vrz +bAS +kSS +kSS +kSS +kSS +etZ +dTJ +sDC +bou +kSS +kSS +kSS +dTJ +eqZ +kSS +kSS +gex +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +cfX +fpu +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(95,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +vrz +owX +kSS +kSS +kSS +kSS +wUR +vrz +dTJ +dTJ +vrz +rMv +rMv +vrz +obn +kSS +kSS +lTJ +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +cfX +cfX +rqT +iad +iad +gVa +iuw +uGd +uGd +uGd +dzu +hOo +ukd +cfX +oww +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(96,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +ahG +ahG +qja +ceE +pvZ +qja +ahG +qja +ceE +pvZ +qja +ahG +ahG +ahG +ahG +vrz +gDI +kSS +kSS +kSS +kSS +kSS +kSS +kSS +kSS +oUB +kSS +kSS +ezY +kSS +kSS +kSS +cJS +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +aAl +aAl +aAl +aAl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(97,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +ahG +qja +qja +oCH +oCH +qja +qja +qja +oCH +oCH +qja +qja +ahG +ahG +ahG +vrz +ntZ +kSS +wLa +kSS +kSS +kSS +kSS +kSS +kSS +oUB +kSS +kSS +ezY +kSS +kSS +kSS +rDI +vrz +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +wkp +wkp +wkp +wkp +wkp +wkp +wkp +gkM +gkM +gkM +gkM +gkM +gkM +gkM +gkM +gkM +gtc +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(98,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +qja +qja +qja +ctk +aZp +wKi +qja +owq +oVr +sdh +qja +qja +qja +ahG +ahG +vrz +vrz +vrz +vrz +vrz +vrz +vrz +vrz +dTJ +dTJ +vrz +nNk +hEG +vrz +dTJ +dTJ +vrz +vrz +vrz +bMd +eNN +eNN +eNN +rfY +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +vTe +wkp +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(99,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +qja +oaw +rVA +rie +rie +uBO +qja +owq +owq +vhs +xPt +sjE +bjG +qja +ahG +vrz +rvu +jZW +vrz +mwt +bCW +xfW +qyJ +kSS +kSS +rko +kSS +kSS +dZd +bnl +syy +skB +efg +vrz +quS +ahF +ahF +ahF +quS +aab +aab +aab +aab +aab +aab +aab +aab +mkl +rFn +njh +njh +njh +njh +pIt +adP +njh +iel +njh +nBZ +shj +aRl +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +nBg +nBg +nBg +nBg +nBg +avQ +twS +avQ +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(100,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +juO +rie +rie +rie +rie +vET +qja +cPL +owq +owq +owq +owq +pOK +qja +ahG +vrz +rMw +rMw +vrz +kSS +kSS +kSS +kSS +kSS +kSS +rko +kSS +kSS +kSS +kSS +kSS +kSS +jcL +vrz +dhf +qAW +sdG +swW +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +cWC +njh +nBZ +efX +njh +njh +nBZ +dWY +njh +njh +shj +tIf +aRl +avQ +wkp +hAQ +hAQ +jRy +jRy +wkp +wkp +wkp +nIB +nIB +nIB +nIB +nIB +nIB +wkp +wkp +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +"} +(101,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +flC +iet +asX +flC +rie +ppg +qja +owq +owq +owq +owq +owq +aDB +qja +ahG +vrz +kSS +kSS +kSS +kSS +kSS +kSS +kSS +kSS +dlQ +vrz +gAj +max +max +max +max +kSS +xXq +vrz +dhf +cgV +aAS +qLt +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +cWC +njh +nBZ +nBZ +njh +njh +nBZ +rcG +njh +shj +tIf +whq +aRl +avQ +wkp +hBn +hBn +hBn +kSw +wkp +lSf +qBg +nKw +nKw +nKw +nKw +nKw +nKw +uFd +xeT +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +aAl +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +wUU +aAl +"} +(102,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +flC +wyG +tsV +flC +rie +wpt +qja +pMB +owq +owq +qBa +sNV +jAX +qja +ahG +vrz +hdc +kSS +kSS +kSS +kSS +kSS +kSS +kSS +cJS +vrz +rnP +rqG +had +tMS +iXm +kSS +max +dTJ +dhf +yiJ +aAS +oUW +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +cWC +njh +nBZ +njh +nBZ +jKx +nBZ +nBZ +shj +tIf +whq +whq +aRl +avQ +wkp +hBn +hBn +hBn +kXc +wkp +lSf +qBg +nKw +oNm +nKw +nKw +oNm +nKw +uFd +xeT +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +sfr +oaW +uCF +oaW +sfr +oaW +uCF +uCF +dHU +uci +uEq +wCS +cPC +wCS +wCS +mld +wCS +wCS +fDL +kyE +wCS +brs +"} +(103,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +qja +qja +qja +qja +nGF +qja +qja +qja +nGF +qja +qja +qja +qja +qja +ahG +vrz +cCk +kSS +kSS +uJa +ybA +vQt +ofb +uWI +etZ +vrz +fmn +rqG +tMS +joL +iXm +kSS +kSS +iRk +skA +aAS +aAS +jeF +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +psC +njh +iel +njh +xwM +nBZ +nBZ +shj +tIf +whq +whq +whq +aRl +avQ +gIm +hBn +hBn +hBn +kXc +wkp +lSf +qBg +nKw +nKw +oVC +nKw +nKw +nKw +uFd +xeT +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uCF +bVf +fgf +eNM +eNM +fgf +bAM +sfr +dHU +uci +uEq +rXm +rXm +rXm +rXm +rXm +rXm +rLM +xsF +nGc +rLM +brs +"} +(104,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +fqj +rie +fbA +rie +rie +rie +fbA +rie +rie +rie +fbA +qnk +cRq +qnk +ahG +vrz +cCk +kSS +kSS +uJa +vrz +vrz +vrz +dTJ +dTJ +vrz +fmn +rqG +uqz +tVs +iXm +kSS +kSS +vFh +skA +aAS +aAS +jeF +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +psC +nBZ +njh +njh +njh +nBZ +oXe +rgK +whq +whq +whq +whq +aRl +avQ +wkp +hBn +hBn +hBn +hBn +wkp +lSf +qBg +nKw +oNm +nKw +nKw +oNm +nKw +uFd +xeT +wkp +avQ +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uCF +esT +ljj +uci +uci +ljj +uES +uCF +dHU +uci +uEq +twq +rXm +jUr +xxN +uzD +rXm +rXm +dIs +dIs +rXm +brs +"} +(105,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +fqj +rie +rie +rie +oTO +rie +rie +rie +oTO +rie +rie +qzm +bvz +bNF +ahG +vrz +dtJ +kSS +kSS +gtb +vrz +uUG +kSS +kSS +tYI +tYI +kSS +kSS +kSS +kSS +kSS +kSS +max +dTJ +dhf +poR +aAS +oUW +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +fes +fes +aNb +fes +fes +aNb +dnP +whq +whq +whq +whq +aRl +avQ +wkp +hDq +hDq +kca +hBn +wkp +lSf +qBg +nKw +nKw +nKw +nKw +nKw +nKw +uFd +xeT +wkp +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oaW +dHU +bWq +uci +uci +uci +mjn +lZB +dHU +uci +uEq +mqG +rPy +hCS +hCS +hCS +hCS +hCS +hCS +hCS +hCS +brs +"} +(106,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +grI +rie +rie +rie +qja +rie +pxS +rie +qja +qja +nGF +qja +qja +qja +ahG +vrz +dtJ +kSS +kSS +tci +vrz +xvS +max +max +max +max +max +max +max +kSS +kSS +max +xXq +vrz +dhf +xeJ +aAS +jeF +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +aMY +aNB +aNb +aPR +bvb +aNb +qFI +whq +whq +whq +whq +aRl +avQ +wkp +wkp +wkp +wkp +lcs +wkp +wkp +wkp +exJ +exJ +exJ +exJ +exJ +exJ +wkp +wkp +wkp +wkp +fGH +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +sfr +dHU +uci +tqO +brF +uci +fzZ +eNM +dkE +uci +uEq +rXm +rXm +hCS +hCS +fQu +hCS +fQu +hCS +hCS +fQu +brs +"} +(107,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +qja +epF +rie +rie +tGq +qja +tna +qOO +kFc +qja +uHy +rie +fbA +bZb +qja +ahG +vrz +rTE +kSS +kSS +epB +vrz +xvS +max +max +max +max +max +max +max +kSS +kSS +max +jcL +vrz +dhf +dhf +oMy +dhf +dhf +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +gjw +aNC +aNb +aPS +byb +aNb +qFI +whq +whq +whq +whq +aRl +avQ +avQ +wkp +igT +jqP +jqP +jqP +lSj +mhI +nZT +nZT +nZT +nZT +nZT +nZT +mhI +lSj +jRE +jRE +jRE +ylZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oaW +dHU +uci +nOs +hCu +uci +xnI +qsd +qsd +qsd +uEq +pKJ +rXm +hCS +roA +tpQ +tpQ +tpQ +tpQ +tpQ +gof +brs +"} +(108,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +knz +epF +rie +rie +tGq +knz +eAu +eAu +eAu +knz +rUG +rie +rie +pYb +knz +ahG +vrz +rTE +kSS +kSS +epB +vrz +uUG +max +oxQ +max +oxQ +hCd +hwE +uch +kSS +kSS +skB +efg +vrz +aab +dhf +hjm +dhf +aab +aab +aab +aab +aab +aab +aab +aab +aab +mkl +aNb +eYX +eYX +aNb +eYX +eYX +aNb +qFI +whq +whq +whq +whq +aRl +avQ +avQ +wkp +iqx +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +jRE +ylZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uCF +dHU +cHn +uci +uci +uci +mjn +oaW +uCF +sfr +uEq +uIO +xKc +hCS +pEY +eXw +eXw +eXw +eXw +eXw +nfr +brs +"} +(109,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +knz +knz +knz +nGF +knz +knz +ahG +ahG +ahG +knz +fxw +rie +tIX +knz +knz +ahG +waQ +waQ +waQ +waQ +waQ +waQ +dTJ +dTJ +eBZ +vrz +cwE +vrz +dTJ +mvt +eBZ +eBZ +mvt +dTJ +vrz +vrz +vrz +dTJ +dTJ +dTJ +vrz +vrz +vrz +vrz +vrz +aab +aab +aab +mkl +fkb +aNb +aNb +aPa +aNb +aNb +aNb +wkp +wkp +wkp +wkp +wkp +wkp +wkp +avQ +wkp +itR +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +jRE +ylZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uCF +esT +ljj +uci +uci +ljj +uES +uCF +oaW +uCF +uEq +rXm +rXm +hCS +pEY +eXw +eXw +cKW +eXw +eXw +nfr +brs +"} +(110,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +knz +knz +fcP +rie +rie +knz +ahG +ahG +ahG +knz +ocF +rie +vev +knz +knz +ahG +waQ +wnb +dmq +bZv +ffJ +waQ +jaZ +max +max +dTJ +qNu +dTJ +xBU +oRM +kSS +kSS +max +oRg +csj +qPC +vrz +max +max +max +max +max +max +tMS +vrz +aab +aab +aab +mkl +aNb +fes +fes +aNb +fes +fes +aNb +wkp +fMq +avQ +fFh +gkM +gtc +wkp +avQ +wkp +iqx +kfk +ljR +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +mHo +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uCF +htn +lQG +qsd +qsd +lQG +mMg +oaW +sfr +oaW +uEq +kqX +rXm +fQu +pEY +eXw +eXw +eXw +eXw +eXw +nfr +brs +"} +(111,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +knz +knz +rie +gCe +knz +ahG +ahG +ahG +knz +qsX +rie +knz +knz +ahG +ahG +waQ +wnb +wnb +iMs +sOq +waQ +svD +max +max +dTJ +qNu +dTJ +oRM +max +kSS +kSS +kSS +kSS +kSS +kSS +jow +max +max +max +max +max +max +tMS +vrz +aab +aab +aab +mkl +aNb +aNc +aNI +aNb +aRm +bzm +aNb +wkp +avQ +fRC +avQ +avQ +gMh +cuC +avQ +wkp +jpr +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +wOU +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oaW +lZB +uCF +uCF +oaW +sfr +uCF +uCF +oaW +uCF +uEq +iyL +ncN +hCS +pEY +eXw +eXw +eXw +eXw +eXw +nfr +brs +"} +(112,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +knz +knz +oTO +wtF +knz +ahG +ahG +ahG +knz +lAl +oTO +knz +knz +ahG +ahG +waQ +wnb +ghY +iEz +vaM +waQ +clW +max +max +cpg +qNu +cpg +max +max +kSS +kSS +kSS +kSS +kSS +kSS +jow +max +max +max +max +max +max +max +vrz +aab +aab +aab +mkl +aNb +aNh +aNJ +aNb +aNc +bMb +aNb +fFh +fFh +fUy +fFh +avQ +gMh +wkp +avQ +wkp +jqP +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +aRC +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(113,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +ahG +knz +knz +knz +knz +ahG +ahG +ahG +knz +knz +knz +knz +ahG +ahG +ahG +waQ +wnb +wnb +wnb +wnb +waQ +max +max +svD +dTJ +qNu +dTJ +dkl +max +mtm +mtm +mtm +mtm +mtm +mtm +vrz +max +max +max +jpX +jpX +jpX +jpX +mkl +aab +aab +aab +mkl +aNb +eYX +eYX +aNb +eYX +eYX +aNb +fFh +avQ +avQ +avQ +avQ +gMh +wkp +wkp +wkp +jqP +jqP +jqP +jqP +lSj +mXz +mXz +mXz +pfy +pQI +rvN +mXz +mXz +xfb +lQQ +jRE +jRE +dzi +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uci +uci +uci +uci +uci +uci +uci +uci +uci +uci +uEq +uci +uci +uci +uci +uci +uci +uci +uci +uci +uci +brs +"} +(114,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +ahG +ahG +ahG +ahG +ahG +ahG +xZY +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +ahG +waQ +wnb +ieX +wnb +wnb +waQ +max +max +svD +dTJ +qNu +dTJ +feP +max +pYY +pYY +pYY +pYY +pYY +pYY +vrz +max +max +max +jpX +jpX +jpX +jpX +mkl +aab +aab +aab +mkl +aNb +aNb +aNb +aNb +aNb +aNb +aNb +hsG +avQ +avQ +avQ +avQ +avQ +avQ +avQ +hYN +jqP +jqP +jqP +jqP +lSj +mXz +mXz +mXz +pra +pQZ +smK +tda +tda +xSD +yda +pwa +jRE +iIb +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +mwc +eAT +fGm +fGm +fGm +kYU +eAT +eAT +eAT +eAT +uEq +gRs +bVd +gRs +ubn +uci +uci +qMP +fvU +gRs +gRs +brs +"} +(115,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +pZq +pZq +pZq +pZq +mkd +mkd +pZq +pZq +pZq +pZq +pZq +pZq +pZq +pZq +waQ +tpD +eVH +tpD +waQ +waQ +max +max +vrz +vrz +uKR +vrz +vrz +eBZ +dTJ +dTJ +vrz +vrz +vrz +vrz +vrz +pUu +eBZ +vrz +mkl +jpX +xcR +jpX +mkl +aab +aab +aab +mkl +aNb +aNb +aNb +aNb +aNb +aNb +aNb +fFh +avQ +avQ +avQ +avQ +gWz +wkp +wkp +wkp +jqP +jqP +jqP +jqP +lSj +mXz +mXz +mXz +pfy +pQI +fHG +mXz +mXz +xfb +jRE +gXh +jRE +iIb +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +agI +hhD +mVb +mVb +mVb +otR +mVb +mVb +mVb +bcF +uEq +nTW +nTW +nTW +aiI +xjd +xjd +aiI +nTW +nTW +nTW +brs +"} +(116,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +uGH +wLv +pZq +kTl +kTl +pZq +uGH +wLv +pZq +eBJ +nWv +pZq +uSq +uSq +owu +pcl +owu +xXq +max +max +max +vrz +max +qNu +max +vrz +max +max +sFu +vrz +aGF +aGF +aGF +aKb +aGF +aGF +aGF +mkl +fYU +bSy +fYU +mkl +mkl +mkl +mkl +mkl +aNb +aNb +cnP +bgJ +tCu +aNn +aNn +fFh +fFh +fUy +fFh +avQ +gWz +wkp +avQ +wkp +jqP +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +qgz +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +agI +oWy +wCS +wCS +drx +dVH +mld +wCS +sBh +ovV +uEq +pmg +eGl +fKr +bep +gXL +gXL +bep +suC +eGl +pdD +brs +"} +(117,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +nXC +nXC +pZq +kTl +kTl +pZq +nXC +nXC +pZq +iQg +iQg +jYN +uSq +uSq +owu +pcl +owu +xXq +max +max +max +vrz +max +qNu +max +vrz +dlQ +max +mNe +vrz +aGG +aHz +aHb +aGF +aKX +aKX +aKX +bpJ +oqR +jpX +lVX +mkl +wtJ +mCs +wBC +mBV +aNb +aNb +cnP +bgJ +aNn +aNn +aNn +wkp +avQ +ghj +avQ +avQ +gWz +cuC +avQ +wkp +jpr +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +lPd +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +agI +oWy +cPC +wCS +wCS +dVH +wCS +wCS +wCS +gYM +uEq +gXL +gXL +gXL +gXL +gXL +gXL +gXL +gXL +gXL +gXL +brs +"} +(118,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +cTa +nXC +pZq +kTl +kTl +pZq +cTa +nXC +pZq +kAO +iQg +jYN +uSq +uSq +owu +pcl +owu +xXq +max +osh +jyq +vrz +max +qNu +max +vrz +jHG +pbB +shE +vrz +aHb +aHz +aHb +aGF +aGF +aGF +aGF +bpJ +bjr +jpX +gqk +mkl +dnl +xOl +gid +tjl +aNb +aNb +cnP +bgJ +aNn +aNn +wlN +wkp +fMq +avQ +fFh +wjz +haH +wkp +avQ +wkp +jqP +kfk +ljR +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +sRb +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +agI +oWy +wCS +wCS +wCS +dVH +wCS +wCS +wCS +gYM +uEq +gXL +rwj +lBN +gXL +gXL +gXL +gXL +gXL +gXL +rij +brs +"} +(119,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +pZq +sBs +pZq +sZJ +sZJ +pZq +pZq +sBs +pZq +pZq +iQg +pZq +uSq +fBv +owu +bjS +owu +vrz +vrz +vrz +vrz +vrz +pUu +uKR +uOv +vrz +vrz +vrz +vrz +vrz +aGF +aGF +aGF +aGF +aKX +aKX +aKX +mkl +mkl +mkl +mkl +mkl +mrU +oxL +rCy +tjl +aNb +aNb +cnP +bgJ +aNn +aNn +aNk +wkp +wkp +wkp +wkp +wkp +wkp +wkp +avQ +wkp +jpr +kfk +jqP +kfk +lSj +mXz +mXz +mXz +mXz +mXz +mXz +mXz +mXz +lSj +cQH +jRE +cIe +kkN +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +agI +oWy +wCS +wCS +wCS +dVH +wCS +bZV +cPC +gYM +uEq +gXL +gXL +ehF +gXL +bYM +pZO +pZO +oWl +gXL +oQS +brs +"} +(120,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +luh +luh +gWR +gWR +gWR +gWR +gWR +pZq +wNr +ylQ +pZq +uSq +fBv +sGh +kAQ +kAQ +cHL +pop +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +fBv +aHc +aHc +aHc +aKd +aHc +aHc +aHc +mkl +xWm +xWm +xWm +mkl +aNb +aNb +aNb +aNb +aPa +aNb +cnP +bgJ +aNn +aNn +aNl +aRl +aRl +rtr +aIj +meI +etv +wkp +avQ +wkp +jqP +khR +lEJ +lQy +mgi +lTa +lTa +lTa +lTa +lTa +lTa +lTa +lTa +mgi +hMN +jLF +cIe +bDh +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +agI +gtw +mQp +typ +mQp +ieg +mQp +mQp +mQp +upo +uEq +gXL +gXL +mTT +gXL +jrf +aUe +aUe +eTL +gXL +oQS +brs +"} +(121,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +qxX +gWR +gWR +gWR +gWR +gWR +gWR +pZq +ylQ +ylQ +pZq +uSq +fBv +eeP +jsc +jsc +kEh +uXg +jsc +fmF +jsc +jsc +jsc +jsc +jsc +jsc +fmF +jsc +uXg +aHe +aHF +aHF +aHF +aHF +aHF +aLv +mkl +xWm +xWm +xWm +mkl +aNb +aNb +aNb +aNb +aNb +aNb +cnP +bgJ +aNn +aNn +aNm +aRl +aRl +gAi +aIj +aIj +aIj +wkp +avQ +wkp +jHj +kuG +jqP +jqP +lSj +mhI +ofF +ofF +ofF +ofF +ofF +ofF +mhI +lSj +jRE +jRE +jRE +sDZ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +yjn +hMW +kei +kei +kei +fWw +kei +kei +kei +hMW +uEq +gXL +gXL +ehF +gXL +suC +oJB +oJB +fKr +gXL +dhO +brs +"} +(122,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +wnA +wnA +gWR +gWR +wnA +wnA +gWR +vvL +ylQ +ylQ +jYN +uSq +fBv +qKr +jsc +jsc +iBu +owu +ozf +mnt +mnt +jtV +dmk +hqg +mnt +mnt +mnt +jll +iYJ +aHr +aHr +aHr +aHr +aHr +aHr +aLw +mkl +mkl +mkl +mkl +mkl +aRl +ogi +ogi +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +lld +aIj +smd +rns +wkp +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +exJ +exJ +exJ +exJ +exJ +exJ +wkp +wkp +wkp +wkp +fGH +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +uci +uci +uci +uci +uci +uci +uci +uci +uci +uci +uEq +rwj +gcS +ixd +gXL +gXL +gXL +gXL +gXL +gXL +gXL +brs +"} +(123,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +ksG +jHa +gWR +gWR +jHa +jHa +gWR +pZq +ylQ +ylQ +jYN +uSq +fBv +mmD +jsc +jsc +wwH +owu +cZr +owu +owu +owu +xDr +owu +owu +fBv +fBv +jgN +vOk +aHg +aHg +aHg +aHg +aKY +aKY +aLz +aRl +aMo +aMo +aMo +aMo +aKv +aHr +aHr +aKv +aMo +aMo +aMo +aRl +hPi +mrb +aIj +gsj +aRl +nWN +aIj +aIj +xDg +wkp +avQ +avQ +avQ +avQ +avQ +wkp +fis +qBg +xog +xog +xog +xog +xog +xog +uFd +sfj +wkp +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(124,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +mhi +dtE +gWR +gWR +mhi +gaH +gWR +pZq +mLL +guf +jYN +uSq +fBv +qxw +jsc +jsc +xUI +owu +cZr +owu +kBb +mrB +jsc +nZW +xHR +fBv +fBv +jgN +fBv +aRl +aRl +aRl +aRl +aKd +aKd +aRl +aRl +aKv +aKv +aKv +aKv +aKv +fil +fil +aKv +aKv +aKv +aKv +aRl +hPi +knE +aIj +aIj +aRl +kRQ +aIj +iwZ +wjF +wkp +wkp +wkp +wkp +wkp +avQ +wkp +fis +qBg +xog +tWl +xog +xog +tWl +xog +uFd +sfj +wkp +avQ +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +vVr +uEq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +brs +"} +(125,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +wnA +wnA +gWR +gWR +wnA +wnA +gWR +pZq +pZq +pZq +pZq +pZq +pZq +pZq +pZq +pZq +fBv +fBv +cZr +owu +jsc +lYN +jsc +lYN +jsc +qnT +owu +jgN +jsc +fBv +aHG +aIA +aKv +aHr +aHr +aKv +aLQ +aMp +aMp +aMp +aMp +aNo +aHr +aHr +bjb +cEu +gct +aWs +aRl +hPi +knE +aIj +aIj +aRl +aRl +mzH +aRl +aRl +aRl +aab +aab +aab +wkp +avQ +wkp +fis +qBg +xog +xog +pyW +xog +xog +xog +uFd +sfj +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +fzA +dVU +dVU +dVU +dVU +dVU +dVU +dVU +uEq +rwq +rwq +rwq +hJU +rwq +rwq +rwq +rwq +hJU +rwq +brs +"} +(126,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +gWR +pZq +fHR +fHR +fHR +pOT +qEz +jsc +cZr +owu +hsz +lgH +tYy +jsc +rze +cxG +owu +jgN +jsc +uXg +aHH +aHr +aKC +aHr +aHr +aLF +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +qAN +aLJ +twO +hSG +aIj +xaa +vHx +aIj +aIj +aIj +aJu +aRl +aab +aab +aab +wkp +avQ +wkp +fis +qBg +xog +tWl +xog +xog +tWl +xog +uFd +sfj +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +dVU +vVr +dVU +dVU +fzA +dVU +dVU +uEq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +brs +"} +(127,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +cbg +cEX +gWR +gWR +luh +jyr +luh +gWR +gWR +gWR +gWR +gWR +aeD +nFA +nFA +nFA +aeD +qEz +fmF +cZr +owu +bxn +lVy +qEz +jsc +jsc +jsc +owu +jgN +fmF +xMR +aHW +aHr +aKv +aKZ +aLh +aLG +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +bkb +aHr +aHr +aHr +hKM +aIj +aIj +xaa +vPV +hqj +vHx +aIj +aIj +aJv +aRl +aab +aab +aab +wkp +avQ +wkp +fis +qBg +xog +xog +xog +xog +xog +xog +uFd +sfj +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +vVr +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +uEq +rwq +hJU +rwq +rwq +rwq +rwq +hJU +rwq +rwq +rwq +brs +"} +(128,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +wNx +gWR +gWR +tZT +fOf +luh +gWR +gWR +gWR +gWR +gWR +pZq +fHR +fHR +fHR +lyd +qEz +jsc +cZr +owu +lUo +bEB +kBa +bDk +rze +cxG +owu +jgN +jsc +vOk +aHX +aHr +rUq +aHr +aLm +aLI +aLR +aMq +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aHr +hKM +aIj +aIj +ngq +xvw +kPy +kSY +aIj +aIj +uol +aRl +aab +aab +aab +wkp +avQ +wkp +wkp +wkp +nIB +nIB +nIB +nIB +nIB +nIB +wkp +wkp +wkp +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +fzA +uEq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +brs +"} +(129,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +pZq +sZJ +sZJ +pZq +pZq +pZq +pZq +jYN +gWR +jYN +pZq +pZq +pZq +pZq +pZq +pZq +fBv +fBv +cZr +owu +jsc +nMc +jsc +nMc +jNg +xHR +owu +jgN +jsc +fBv +aIh +aIT +aKv +aLa +aLn +aKv +aIT +aIT +aIT +aLf +wxr +aHr +aHr +aPK +aLf +wxr +aHr +aHr +aRl +cus +aIj +aIj +ngq +kSY +wBk +aIj +aIj +ikv +aRl +aab +aab +aab +wkp +avQ +avQ +avQ +wkp +avn +avn +avn +avn +avn +avQ +twS +avQ +avQ +avQ +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +vVr +dVU +dVU +fzA +dVU +dVU +dVU +uEq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +brs +"} +(130,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +dyD +iQg +iQg +iQg +iQg +yiF +jYN +uSq +fBv +aff +jsc +jsc +jsc +owu +cZr +owu +kBb +ePF +jsc +cXO +lWX +fBv +fBv +jgN +fBv +fBv +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aKv +aKv +aKv +aKv +fil +fil +aKv +aKv +aKv +fil +fil +aRl +uol +uol +aIj +aIj +aIj +aIj +aIj +aIj +bYq +aRl +aab +aab +aab +wkp +wkp +wkp +avQ +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +heW +wkp +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +dVU +vVr +dVU +dVU +dVU +dVU +dVU +uEq +rwq +rwq +rwq +hJU +rwq +rwq +rwq +rwq +hJU +rwq +brs +"} +(131,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +oie +iQg +eFr +syn +iQg +iQg +jYN +uSq +fBv +hkJ +jsc +jsc +jsc +owu +cZr +owu +owu +owu +xDr +owu +owu +fBv +fBv +jgN +fBv +aab +aab +ach +aab +aab +aab +aab +aRl +aMo +aMo +aMo +aKv +aHr +aHr +aKv +aMo +aKv +aHr +aHr +aRl +uol +uol +eLs +aHp +aHp +aIj +aIj +eew +keE +aRl +aab +aab +aab +aab +aab +wkp +wjz +wjz +wjz +wjz +wjz +wjz +wjz +wjz +wjz +haH +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +uEq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +brs +"} +(132,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +oie +iQg +eBJ +syn +iQg +iQg +jYN +uSq +fBv +mdi +jsc +jsc +jsc +owu +qHo +kAQ +kAQ +opv +jzi +ide +kAQ +kAQ +kAQ +cTH +fBv +aab +aab +ach +aab +aab +aab +aab +aRl +aRl +aRl +aRl +aRl +aLV +aHr +aKv +aMG +aKv +aNx +aNx +aRl +aRl +aRl +aRl +aRl +pRl +mqC +mqC +mqC +aRl +aRl +aab +aab +aab +aab +aab +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +wkp +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +fzA +dVU +dVU +dVU +dVU +dVU +dVU +dVU +dVU +uEq +rwq +hJU +rwq +rwq +rwq +rwq +hJU +rwq +rwq +rwq +brs +"} +(133,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +kim +iQg +eBJ +iQg +iQg +iQg +jYN +uSq +fBv +jsc +jsc +jsc +jsc +uXg +jsc +fmF +jsc +jsc +jsc +jsc +jsc +jsc +fmF +jsc +fBv +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aHr +aHr +aMA +aLV +aMA +aHr +aNL +aRl +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dVU +dVU +dVU +dVU +dVU +dVU +vVr +dVU +dVU +fzA +uEq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +rwq +brs +"} +(134,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +pZq +pZq +pZq +iQg +gdz +apl +jYN +uSq +fBv +jsc +jsc +jsc +jsc +cCq +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +jsc +fBv +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aHr +aHr +aHr +aHr +aHr +aHr +aHr +aKv +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(135,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +hoQ +ukt +pZq +iQg +iQg +iQg +jYN +uSq +fBv +fBv +fBv +fBv +fBv +fBv +qZe +bqs +aRl +aRl +cWr +cWr +ngV +fBv +fBv +fBv +fBv +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aMb +aMs +aMs +aMH +aMs +aMs +aNM +aKv +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dkr +utw +dXM +joj +udu +udu +utw +dkr +ckO +ckO +uEq +smO +smO +smO +smO +smO +smO +smO +eFe +smO +smO +brs +"} +(136,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +teP +teP +uSn +iQg +iQg +iQg +jYN +uSq +fBv +aab +aab +bqs +qLH +qLH +qLH +kUH +aRl +gPI +kPj +kPj +anT +xeX +xeX +xsU +xsU +xeX +xsU +xsU +xeX +xeX +xsU +xeX +lEy +aab +aab +aab +aRl +aMd +aMt +aMC +aMJ +aMW +aMt +aNN +aRl +aMo +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +utw +utw +dXM +utw +dkr +utw +fRA +udu +dXM +ckO +uEq +smO +eJY +smO +smO +smO +smO +smO +smO +lex +smO +brs +"} +(137,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +pZq +kTl +kTl +pZq +gRU +vgC +pZq +eBJ +eBJ +goj +pZq +pZq +fBv +aab +aab +bqs +cjU +rFu +qLH +tcR +aRl +gPI +kPj +iIK +aKv +xeX +vWS +yeU +yeU +vWS +yeU +yeU +vWS +xeX +yfR +qhv +xeX +xeX +aab +aab +aRl +aMe +aKv +aMD +aMK +aMX +aKv +aNQ +aRl +aRl +aRl +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +udu +sfr +sfr +dkr +utw +utw +udu +dkr +dkr +ckO +uEq +smO +smO +smO +sFn +smO +smO +smO +smO +smO +smO +brs +"} +(138,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +nHR +fwi +fwi +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +nHR +qLH +qLH +qLH +iNX +aRl +gPI +kPj +kPj +xDI +okp +vQP +vQP +vQP +vQP +vQP +vQP +vQP +ejs +vQP +vQP +dGG +xeX +aab +aab +aRl +aMf +aKv +aKv +aKv +aKv +aKv +aNR +aRl +aab +aab +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +fRA +sfr +utw +dXM +udu +udu +fwL +ckO +ckO +utw +uEq +smO +smO +smO +smO +lex +smO +smO +smO +sFn +smO +brs +"} +(139,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +nHR +nHR +qLH +rFu +qLH +xXd +aRl +gPI +kPj +kPj +aKv +xeX +wnu +iLL +iLL +wnu +iLL +iLL +wnu +xeX +nlW +uni +xeX +xeX +ach +ach +aKv +aMg +aKv +ach +ach +ach +aKv +aNS +aKv +aab +aab +aab +aab +ach +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +udu +utw +udu +fRA +ckO +ckO +ckO +udu +dkr +udu +uEq +smO +smO +smO +gjW +smO +smO +eJY +smO +smO +eFe +brs +"} +(140,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +aAM +vkh +vkh +nHR +nHR +cDm +qLH +qLH +qLH +aRl +hfk +kPj +kPj +anT +xeX +xeX +xsU +xsU +xeX +xsU +xsU +xeX +xeX +xsU +xeX +lEy +ach +ach +ach +aGP +aMh +aKv +ach +aab +ach +aKv +aOv +aGP +ach +ach +ach +ach +oNl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +utw +dkr +dkr +ckO +udu +dkr +dkr +udu +utw +udu +uEq +smO +smO +smO +smO +smO +smO +smO +eFe +smO +smO +brs +"} +(141,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +aAa +azR +azR +azR +azR +azR +aAa +aAM +aAM +aCm +vkh +nHR +nHR +bqs +bqs +bqs +bqs +aRl +aRl +cWr +cWr +aRl +aRl +aRl +aRl +aRl +aRl +aab +ach +aab +aab +aab +aab +aab +aab +aab +aMr +aMr +aHh +aMr +aIR +aIR +aIR +aMr +aHh +aMr +aMr +aMr +aLB +aLB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +dkr +utw +ckO +ckO +udu +fRA +gkS +utw +udu +dkr +uEq +smO +eJY +smO +smO +smO +smO +sFn +smO +lex +smO +brs +"} +(142,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +azR +azR +azR +azR +azR +azR +azR +aAM +aBc +aBz +vkh +nHR +kPj +kPj +aRl +kPj +kPj +kPj +aRl +kPj +kPj +aRl +kPj +kPj +kPj +kPj +aRl +aab +ach +aab +aMr +aIR +aMr +aMr +aMr +aIR +aMr +aLL +bwE +aMu +nPB +nPB +nPB +aNA +bwE +aIR +aKo +cGo +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +udu +wIl +ckO +ckO +utw +udu +dkr +udu +dkr +udu +uEq +smO +smO +smO +smO +smO +smO +smO +smO +smO +smO +brs +"} +(143,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +azR +azR +azR +ack +azR +azR +azR +ayi +aBc +aBz +vkh +nHR +kPj +kPj +aRl +kPj +kPj +kPj +aRl +kPj +kPj +aRl +kPj +kPj +kPj +kPj +aRl +ach +ach +aMr +aMr +hFt +aIk +aKa +kLu +kLu +edo +kLu +wRq +aHA +aHA +aHA +aHA +aHA +xIV +aPL +aLs +cIv +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +fRA +udu +dkr +utw +ckO +ckO +udu +utw +dXM +dXM +uEq +smO +smO +gjW +smO +lex +smO +smO +smO +sFn +smO +brs +"} +(144,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +azR +azR +azR +azR +azR +azR +azR +aAM +aBc +aBz +vkh +nHR +kPj +kPj +aRl +kPj +kPj +kPj +aRl +kPj +kPj +aRl +aRl +aRl +aRl +aRl +aRl +aab +aMr +aMr +aGC +vHR +hlP +aIR +aIS +aIS +aIS +aIS +gcV +aIS +aIS +aIS +aIS +aIS +aOZ +aPN +aMr +aMr +aMr +aMr +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +udu +utw +udu +fRA +udu +wEY +udu +dXM +dXM +dXM +uEq +smO +smO +smO +smO +smO +smO +eJY +smO +smO +eFe +brs +"} +(145,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +azR +abg +abi +azR +acl +azR +adL +abg +aAM +aAM +aCt +vkh +nHR +aRl +aRl +aRl +aRl +aRl +aRl +aRl +kPj +kPj +aRl +kPj +kPj +kPj +kPj +aRl +aab +aIR +aDR +aGD +aKD +aIt +aGR +aGR +aIR +aIR +aGR +aMm +aIR +aIR +aIR +aIR +aIR +cxx +aIR +blb +djD +eDH +fsI +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(146,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +aAM +aAM +aAM +abn +acd +aAM +acd +azS +aAM +aAM +aAM +vkh +vkh +nHR +kPj +kPj +kPj +kPj +kPj +kPj +aRl +kPj +kPj +aRl +kPj +kPj +kPj +kPj +aRl +aab +aIR +aEX +aGE +aHs +aMr +aGR +aFM +aLc +aLc +aIR +aMn +nPB +nPB +nPB +nPB +nPB +cxx +aIR +bmb +aLl +aLl +fyA +aIR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +wlg +wlg +wlg +wlg +wlg +cyy +uEq +gXL +gXL +epv +uQF +hnD +hnD +ksq +ksq +ksq +ksq +brs +"} +(147,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +nHR +kPj +kPj +kPj +kPj +kPj +kPj +kPj +kPj +kPj +aRl +kPj +kPj +kPj +kPj +aRl +aab +aIR +aDR +jSH +aHt +aEW +aFa +aFY +aLd +aIy +aLP +trW +abr +abr +aMT +abr +abr +fZb +aPO +aLl +aLl +fpV +fyA +aIR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +wlg +wlg +wlg +wlg +wlg +wlg +uEq +gXL +gXL +epv +uQF +dma +sxw +sxw +sxw +riw +ksq +brs +"} +(148,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nHR +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +hyV +nHR +kPj +kPj +kPj +kPj +kPj +kPj +aRl +kPj +kPj +aRl +kPj +kPj +kPj +kPj +aRl +aab +aIR +aDF +kjk +aHu +aMr +aGR +aKW +aLe +aLe +aIR +gcV +aIS +aIS +aIS +aIS +aIS +cxx +aIR +bnb +aLl +aLl +fyA +aIR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +aKQ +sxw +sxw +sxw +riw +wlg +uEq +gXL +wqi +hVA +uQF +fWy +bfr +bfr +bfr +ozU +ksq +brs +"} +(149,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aRl +aab +aIR +aDR +hhT +aKD +aHN +aGR +aGR +aIR +aIR +aGR +aMm +aIR +aIR +aIR +aIR +aIR +cxx +aIR +aKt +dkK +fsh +aLD +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +vTa +bfr +bfr +bfr +ozU +wlg +uEq +gXL +vrD +hVA +uQF +fWy +bfr +bfr +bfr +ozU +ksq +brs +"} +(150,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ach +ach +aMr +aMr +aEg +yiv +jlk +aIR +nPB +nPB +nPB +nPB +gcV +nPB +nPB +aMU +nPB +nPB +aOZ +aPN +aMr +aMr +aMr +aMr +aMr +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +vTa +bfr +bfr +bfr +ozU +wlg +uEq +gXL +vrD +hVA +uQF +fWy +bfr +bfr +bfr +ozU +ksq +brs +"} +(151,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ach +ach +aMr +aMr +jzQ +aIz +aKa +aHA +aHA +rsb +aHA +uOk +kBZ +kBZ +kBZ +kBZ +kBZ +nKf +aPL +bpb +dzr +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +vTa +bfr +bfr +bfr +ozU +wlg +uEq +gXL +vrD +hVA +uQF +fWy +bfr +bfr +bfr +ozU +ksq +brs +"} +(152,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMr +aIR +aMr +aMr +aMr +aIR +aMr +aGT +iYo +aIS +aIS +aIv +aIS +aIS +aLL +aIR +brb +dzs +eCw +aLE +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +vTa +bfr +bfr +bfr +ozU +wlg +uEq +gXL +fOt +hVA +uQF +fWy +bfr +bfr +bfr +ozU +ksq +brs +"} +(153,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMr +aMr +aIR +aMr +aMr +aMr +aMr +aMr +aIR +aMr +aMr +aMr +aLB +aLB +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +gHG +dkU +dkU +dkU +tZw +wlg +uEq +gXL +gXL +epv +uQF +bGp +dkU +dkU +wHY +jWi +ksq +brs +"} +(154,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +giS +wlg +wlg +wlg +wlg +wlg +wlg +uEq +gXL +gXL +epv +uQF +ksq +ksq +ksq +ksq +ksq +ksq +brs +"} +(155,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aRl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +eVh +vDa +vDa +jYi +gzE +gzE +gzE +gzE +hUM +aFj +uEq +jFe +gXL +epv +dEZ +vDa +vDa +vDa +vDa +vDa +vDa +brs +"} +(156,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(157,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wwP +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +brs +"} +(158,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +lMT +tqo +mnb +mnb +mnb +mnb +mnb +cVu +mnb +lMT +wwP +mTd +mTd +vDa +mTd +mTd +mTd +mTd +vDa +mTd +mTd +brs +"} +(159,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +gXL +jGC +aKQ +edr +fxn +uyD +fxn +fbi +wwP +odt +odt +vtp +odt +odt +odt +odt +cEq +odt +odt +brs +"} +(160,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +rwj +gAH +vTa +nAG +bvs +vGW +bvs +vrt +wwP +fBO +quz +quz +quz +ifq +wZU +vMU +vMU +vMU +fjJ +brs +"} +(161,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +bIj +cxq +vTa +vGW +vGW +vGW +bvs +vrt +wwP +oje +wlg +wlg +wlg +vGb +bMB +wlg +wlg +wlg +wxw +brs +"} +(162,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +rwj +moK +vTa +nAG +bvs +vGW +bvs +vrt +wwP +fBO +quz +oje +wlg +vGb +bMB +wlg +wxw +vMU +fjJ +brs +"} +(163,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +gXL +nLn +gHG +mrt +ixc +jrk +ixc +fzF +wwP +pyz +wlg +oje +wlg +wAP +bMB +wlg +wxw +wlg +xeY +brs +"} +(164,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +oXZ +hbH +hbH +hbH +hbH +hbH +hbH +hbH +wwP +cHa +xHM +oje +wlg +vGb +bMB +wlg +wxw +utc +wac +brs +"} +(165,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +niT +uGD +xpo +xpo +xpo +xpo +fpd +rwj +wwP +oje +wlg +wlg +wlg +vGb +bMB +wlg +wlg +wlg +wxw +brs +"} +(166,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +rwj +gXL +wDq +frC +fpB +fpB +fpB +fpB +eSf +rwj +wwP +cHa +xHM +xHM +xHM +qyk +dDN +utc +utc +utc +wac +brs +"} +(167,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(168,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +nSv +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +eXw +eXw +eXw +fcJ +nbZ +tCn +wCS +wCS +wCS +wCS +brs +"} +(169,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +tle +upW +upW +upW +upW +upW +upW +tle +upW +wwP +eXw +eXw +eXw +eXw +eXw +rCx +wCS +rLM +afa +wCS +brs +"} +(170,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +eXw +eXw +eXw +eXw +eXw +rCx +mld +wCS +wCS +wCS +brs +"} +(171,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +tle +upW +upW +tle +upW +upW +upW +wwP +eXw +fDi +oif +wFX +eXw +rCx +jIP +duU +drx +wCS +brs +"} +(172,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +eXw +rCx +mld +adO +eXw +rCx +sBh +wCS +wCS +cPC +brs +"} +(173,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +eXw +rCx +wCS +adO +eXw +rCx +wys +wCS +wCS +wCS +brs +"} +(174,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +mZU +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +tle +upW +upW +tle +upW +upW +upW +wwP +eXw +rCx +wCS +adO +eXw +rCx +oOV +wCS +vsU +wCS +brs +"} +(175,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +eXw +rCx +cPC +adO +eXw +rCx +wCS +cPC +wCS +wCS +brs +"} +(176,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +tle +upW +upW +upW +upW +upW +upW +tle +upW +wwP +eXw +fcJ +nbZ +ffi +eXw +rCx +wCS +afa +wCS +wCS +brs +"} +(177,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +eXw +fDi +oif +oif +oif +ube +wCS +wCS +wCS +cPC +brs +"} +(178,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(179,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +brs +"} +(180,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +awl +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +mTd +mTd +vDa +mTd +mTd +mTd +mTd +vDa +mTd +mTd +brs +"} +(181,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +odt +odt +vtp +odt +odt +odt +odt +cEq +odt +odt +brs +"} +(182,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +lmS +quz +quz +quz +cUq +lsS +vMU +vMU +vMU +wAs +brs +"} +(183,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +lJF +wlg +wlg +wlg +tOl +nRh +wlg +wlg +wlg +bDe +brs +"} +(184,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +lJF +wlg +wlg +wlg +tOl +nRh +wlg +wlg +wlg +bDe +brs +"} +(185,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +lJF +wlg +wlg +wlg +tOl +nRh +wlg +wlg +wlg +bDe +brs +"} +(186,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +lJF +wlg +wlg +wlg +tOl +nRh +wlg +wlg +wlg +bDe +brs +"} +(187,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +lJF +wlg +wlg +wlg +tOl +nRh +wlg +wlg +wlg +bDe +brs +"} +(188,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +sMD +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +wwP +tFL +xHM +xHM +xHM +pgp +eHL +utc +utc +utc +rYC +brs +"} +(189,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +qfW +aAl +"} +(190,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +wwP +rar +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +vDa +brs +"} +(191,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +mTd +mTd +vDa +mTd +mTd +mTd +mTd +vDa +mTd +mTd +wwP +rar +vDa +vDa +ftw +ftw +ftw +ftw +vDa +vDa +vDa +brs +"} +(192,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +odt +odt +vtp +odt +odt +odt +odt +cEq +odt +odt +wwP +vDa +vDa +vDa +ttb +ttb +ttb +ttb +vDa +vDa +vDa +brs +"} +(193,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +fBO +quz +quz +quz +quz +vMU +vMU +vMU +vMU +fjJ +wwP +vDa +vDa +bRf +fBO +quz +quz +wlg +xFT +ftw +vDa +brs +"} +(194,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oje +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wxw +wwP +vDa +ftw +vam +oje +wZU +jvv +wxw +xFT +ftw +vDa +brs +"} +(195,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oje +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wxw +wwP +vDa +ftw +vam +oje +xyg +qyk +wxw +xFT +ftw +vDa +brs +"} +(196,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oje +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wxw +wwP +vDa +ftw +vam +wlg +utc +utc +wac +jEI +vDa +vDa +brs +"} +(197,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oje +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wxw +wwP +vDa +vDa +vDa +rAB +rAB +rAB +rAB +vDa +vDa +vDa +brs +"} +(198,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +oje +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wlg +wxw +wwP +iLP +wvO +vDa +ftw +ftw +ftw +ftw +vDa +vDa +rtd +brs +"} +(199,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +rNA +cHa +xHM +xHM +xHM +xHM +utc +utc +utc +utc +wac +wwP +vDa +xnP +vDa +vDa +vDa +vDa +vDa +vDa +vDa +rtd +brs +"} +(200,1,1) = {" +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aAl +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +aAl +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +iKe +aAl +"} diff --git a/maps/exodus/exodus-transit.dmm b/maps/exodus/exodus-transit.dmm new file mode 100644 index 00000000000..99f2778d1c8 --- /dev/null +++ b/maps/exodus/exodus-transit.dmm @@ -0,0 +1,65579 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/obj/effect/shuttle_landmark/escape_pod/transit/pod3, +/turf/space, +/area/space) +"ac" = ( +/obj/effect/shuttle_landmark/escape_pod/transit/pod1, +/turf/space, +/area/space) +"ad" = ( +/obj/effect/shuttle_landmark/escape_pod/transit/pod2, +/turf/space, +/area/space) +"ae" = ( +/obj/effect/shuttle_landmark/escape_pod/transit/pod4, +/turf/space, +/area/space) +"rv" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + opacity = 0; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/space, +/area/space) +"yM" = ( +/obj/effect/shuttle_landmark/escape_shuttle/transit, +/turf/space, +/area/space) + +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(141,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(142,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(143,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(144,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(145,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(146,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(147,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(148,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(149,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(150,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(151,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(152,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(153,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(154,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(155,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(156,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(157,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(158,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(159,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(160,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(161,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(162,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(163,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(164,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(165,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(166,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(167,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(168,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(169,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +rv +rv +rv +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +yM +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +rv +rv +rv +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +rv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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/exodus/exodus.dm b/maps/exodus/exodus.dm new file mode 100644 index 00000000000..c42c7ab9480 --- /dev/null +++ b/maps/exodus/exodus.dm @@ -0,0 +1,76 @@ +#if !defined(using_map_DATUM) //Nebula uses a different capitalization of this for... reasons... Waste of my fucking time... + + //Packs + #include "../../packs/faction_iccgn/_pack.dm" + #include "../../packs/faction_solgov/_pack.dm" + + //Exoplanet Ruins + //#include "../random_ruins/exoplanet_ruins/playablecolony/playablecolony.dm" + + // Space Ruins + #include "../away/mining/mining.dm" + #include "../away/derelict/derelict.dm" + #include "../away/bearcat/bearcat.dm" + #include "../away/lost_supply_base/lost_supply_base.dm" + #include "../away/smugglers/smugglers.dm" + #include "../away/magshield/magshield.dm" + #include "../away/casino/casino.dm" + #include "../away/yacht/yacht.dm" + #include "../away/slavers/slavers_base.dm" + #include "../away/mobius_rift/mobius_rift.dm" + #include "../away/errant_pisces/errant_pisces.dm" + //Nebula Defaults End + #include "../away/meatstation/meatstation.dm" + #include "../away/mininghome/mininghome.dm" + #include "../away/scavver/scavver_gantry.dm" + #include "../away/blueriver/blueriver.dm" + + //Job Information + #include "jobs/_goals.dm" + #include "jobs/captain.dm" + #include "jobs/civilian.dm" + #include "jobs/engineering.dm" + #include "jobs/medical.dm" + #include "jobs/science.dm" + #include "jobs/security.dm" + + //Outfits + //Empty + + + + //Objects + #include "items/mecha.dm" + #include "items/stamps.dm" + + //Misc + #include "exodus_announcements.dm" + #include "exodus_antagonism.dm" + #include "exodus_cameras.dm" + #include "exodus_areas.dm" + #include "exodus_elevator.dm" + #include "exodus_jobs.dm" + #include "exodus_loadout.dm" + #include "exodus_overmap.dm" + #include "exodus_setup.dm" + #include "exodus_shuttles.dm" + #include "exodus_holodecks.dm" + #include "exodus_unit_testing.dm" + #include "exodus_npcs.dm" + #include "exodus_overrides.dm" + #include "exodus_presets.dm" + + //Maps + #include "exodus-1.dmm" //1 + #include "exodus-2.dmm" //2 + #include "exodus-admin.dmm" //3 + #include "exodus-transit.dmm" //4 + #include "../away/empty.dmm" //5 + + + //Control Keys + #define using_map_DATUM /datum/map/exodus + +#elif !defined(MAP_OVERRIDE) + #warn A map has already been included, ignoring Exodus +#endif diff --git a/maps/exodus/exodus_announcements.dm b/maps/exodus/exodus_announcements.dm new file mode 100644 index 00000000000..9ce659e7ac1 --- /dev/null +++ b/maps/exodus/exodus_announcements.dm @@ -0,0 +1,26 @@ +/datum/map/exodus + emergency_shuttle_docked_message = "The Emergency Shuttle has docked with the station. You have approximately %ETD% to board the Emergency Shuttle." + emergency_shuttle_leaving_dock = "The Emergency Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%." + + emergency_shuttle_called_message = "An emergency evacuation shuttle has been called. It will arrive in approximately %ETA%" + emergency_shuttle_called_sound = 'sound/AI/shuttlecalled.ogg' + + emergency_shuttle_recall_message = "The emergency shuttle has been recalled." + + command_report_sound = 'sound/AI/commandreport.ogg' + grid_check_sound = 'sound/AI/poweroff.ogg' + grid_restored_sound = 'sound/AI/poweron.ogg' + meteor_detected_sound = 'sound/AI/meteors.ogg' + radiation_detected_sound = 'sound/AI/radiation.ogg' + space_time_anomaly_sound = 'sound/AI/spanomalies.ogg' + unidentified_lifesigns_sound = 'sound/AI/aliens.ogg' + + electrical_storm_moderate_sound = null + electrical_storm_major_sound = null + +/datum/map/exodus/level_x_biohazard_sound(var/bio_level) + switch(bio_level) + if(7) + return 'sound/AI/outbreak7.ogg' + else + return 'sound/AI/outbreak5.ogg' diff --git a/maps/exodus/exodus_antagonism.dm b/maps/exodus/exodus_antagonism.dm new file mode 100644 index 00000000000..cfa232d7370 --- /dev/null +++ b/maps/exodus/exodus_antagonism.dm @@ -0,0 +1,47 @@ +/datum/antagonist/traitor/New() + LAZYINITLIST(protected_jobs) + protected_jobs |= list(/datum/job/officer, /datum/job/warden, /datum/job/detective, /datum/job/captain, /datum/job/lawyer, /datum/job/hos) + ..() + +/datum/antagonist/changeling/New() + LAZYINITLIST(protected_jobs) + protected_jobs |= list(/datum/job/officer, /datum/job/warden, /datum/job/detective, /datum/job/captain, /datum/job/hos) + ..() + +/datum/antagonist/godcultist/New() + LAZYINITLIST(restricted_jobs) + restricted_jobs |= list(/datum/job/lawyer, /datum/job/captain, /datum/job/hos) + LAZYINITLIST(protected_jobs) + protected_jobs |= list(/datum/job/officer, /datum/job/warden, /datum/job/detective) + ..() + +/datum/antagonist/godcultist/New() + LAZYINITLIST(blacklisted_jobs) + blacklisted_jobs |= /datum/job/chaplain + ..() + +/datum/antagonist/cultist/New() + LAZYINITLIST(restricted_jobs) + restricted_jobs |= list(/datum/job/lawyer, /datum/job/captain, /datum/job/hos) + LAZYINITLIST(protected_jobs) + protected_jobs |= list(/datum/job/officer, /datum/job/warden, /datum/job/detective) + LAZYINITLIST(blacklisted_jobs) + blacklisted_jobs |= list(/datum/job/chaplain, /datum/job/psychiatrist) + ..() + +/datum/antagonist/renegade/New() + LAZYINITLIST(restricted_jobs) + restricted_jobs |= list(/datum/job/officer, /datum/job/warden, /datum/job/hos, /datum/job/captain) + ..() + +/datum/antagonist/revolutionary/New() + LAZYINITLIST(restricted_jobs) + restricted_jobs |= list(/datum/job/captain, /datum/job/hop, /datum/job/hos, /datum/job/chief_engineer, /datum/job/rd, /datum/job/cmo, /datum/job/lawyer) + LAZYINITLIST(protected_jobs) + protected_jobs |= list(/datum/job/officer, /datum/job/warden, /datum/job/detective) + ..() + +/datum/objective/heist/kidnap/New() + LAZYINITLIST(roles) + roles |= list(/datum/job/chief_engineer, /datum/job/rd, /datum/job/roboticist, /datum/job/chemist, /datum/job/engineer) + ..() diff --git a/maps/exodus/exodus_areas.dm b/maps/exodus/exodus_areas.dm new file mode 100644 index 00000000000..31a1dfec3b5 --- /dev/null +++ b/maps/exodus/exodus_areas.dm @@ -0,0 +1,1144 @@ +/datum/event/prison_break/medical + areaType = list(/area/exodus/medical) + +/datum/event/prison_break/science + areaType = list(/area/exodus/research) + +/datum/event/prison_break/station + areaType = list(/area/exodus/security) + +//Comments are for my own sanity. PLEASE DONT REMOVE THEM AS IT WAS VERY HARD TO SORT ALL THIS +//Do not remove dots after comments + +/area/exodus + secure = TRUE + +//COMMAND. + +/area/exodus/bridge + name = "\improper Bridge" + icon_state = "bridge" + req_access = list(access_bridge) + +/area/exodus/bridge/meeting_room + name = "\improper Heads of Staff Meeting Room" + icon_state = "bridge" + sound_env = MEDIUM_SOFTFLOOR + +//CAPTAIN'S QUARTERS. + +/area/exodus/crew_quarters/captain + name = "\improper Command - Captain's Office" + icon_state = "captain" + sound_env = MEDIUM_SOFTFLOOR + req_access = list(access_captain) + +//COMMAND QUARTERS. + +/area/exodus/crew_quarters/heads + icon_state = "head_quarters" + req_access = list(access_heads) + +/area/exodus/crew_quarters/heads/chief + name = "\improper Engineering - CE's Office" + req_access = list(access_ce) + +/area/exodus/crew_quarters/heads/hos + name = "\improper Security - HoS' Office" + req_access = list(access_hos) + +/area/exodus/crew_quarters/heads/hop + name = "\improper Command - HoP's Office" + req_access = list(access_hop) + +/area/exodus/crew_quarters/heads/hor + name = "\improper Research - RD's Office" + req_access = list(access_rd) + +/area/exodus/crew_quarters/heads/cmo + name = "\improper Command - CMO's Office" + req_access = list(access_cmo) + +//TCOMS. + +/area/exodus/maintenance/telecomms + name = "Telecommunications Sublevel" + sound_env = SMALL_ENCLOSED + req_access = list(access_tcomsat) + +//SOLAR. + +/area/exodus/maintenance/auxsolarport + name = "Solar Maintenance - Port" + icon_state = "SolarcontrolP" + sound_env = SMALL_ENCLOSED + req_access = list(access_engine) + +/area/exodus/maintenance/auxsolarstarboard + name = "Solar Maintenance - Starboard" + icon_state = "SolarcontrolS" + sound_env = SMALL_ENCLOSED + req_access = list(access_engine) + +/area/exodus/solar + requires_power = 1 + always_unpowered = 1 + has_gravity = FALSE + base_turf = /turf/space + +/area/exodus/solar/auxstarboard + name = "\improper Fore Starboard Solar Array" + icon_state = "panelsA" + +/area/exodus/solar/port + name = "\improper Port Auxiliary Solar Array" + icon_state = "panelsP" + +/area/exodus/solar/starboard + name = "\improper Starboard Auxiliary Solar Array" + icon_state = "panelsS" + +/area/exodus/solar/auxport + name = "\improper Fore Port Solar Array" + icon_state = "panelsA" + +/area/exodus/solar/fore + name = "\improper Fore Solar Array" + icon_state = "yellow" + +/area/exodus/maintenance/foresolar + name = "\improper Solar Maintenance - Fore" + icon_state = "SolarcontrolA" + sound_env = SMALL_ENCLOSED + +/area/exodus/maintenance/portsolar + name = "\improper Solar Maintenance - Aft Port" + icon_state = "SolarcontrolP" + sound_env = SMALL_ENCLOSED + +/area/exodus/maintenance/starboardsolar + name = "\improper Solar Maintenance - Aft Starboard" + icon_state = "SolarcontrolS" + sound_env = SMALL_ENCLOSED + +//STORAGE. + +/area/exodus/storage/tech + name = "Technical Storage" + icon_state = "storage" + req_access = list(access_tech_storage) + +/area/exodus/storage/primary + name = "Primary Tool Storage" + icon_state = "primarystorage" + +/area/exodus/storage/tools + name = "Auxiliary Tool Storage" + icon_state = "auxstorage" + +/area/exodus/storage/art + name = "Art Supply Storage" + icon_state = "storage" + +/area/exodus/storage/emergency + name = "Starboard Emergency Storage" + icon_state = "emergencystorage" + req_access = list(access_emergency_storage) + +/area/exodus/storage/emergency2 + name = "Port Emergency Storage" + icon_state = "emergencystorage" + req_access = list(access_emergency_storage) + +//ENGINEERING. + +/area/exodus/engineering + name = "\improper Engineering" + icon_state = "engineering" + ambience = list('sound/ambience/ambisin1.ogg','sound/ambience/ambisin2.ogg','sound/ambience/ambisin3.ogg','sound/ambience/ambisin4.ogg') + req_access = list(access_engine) + +//Generic +/area/exodus/engineering/foyer + name = "\improper Engineering Foyer" + icon_state = "engineering_foyer" + +/area/exodus/engineering/locker_room + name = "\improper Engineering Locker Room" + icon_state = "engineering_locker" + +/area/exodus/engineering/storage + name = "\improper Engineering Storage" + icon_state = "engineering_storage" + +/area/exodus/engineering/engine_eva + name = "\improper Engine EVA" + icon_state = "engine_eva" + +//Supermatter +/area/exodus/engineering/engine_monitoring + name = "\improper Engine Monitoring Room" + icon_state = "engine_monitoring" + +/area/exodus/engineering/engine_airlock + name = "\improper Engine Room Airlock" + icon_state = "engine" + +/area/exodus/engineering/engine_room + name = "\improper Engine Room" + icon_state = "engine" + sound_env = LARGE_ENCLOSED + +/area/exodus/engineering/engine_waste + name = "\improper Engine Waste Handling" + icon_state = "engine_waste" + +/area/exodus/engineering/engine_smes + name = "\improper Engineering SMES" + icon_state = "engine_smes" + sound_env = SMALL_ENCLOSED + +//Monitoring and misc +/area/exodus/engineering/engineering_monitoring + name = "\improper Engineering Monitoring Room" + icon_state = "engine_monitoring" + +/area/exodus/engineering/break_room + name = "\improper Engineering Break Room" + icon_state = "engineering_break" + sound_env = MEDIUM_SOFTFLOOR + +/area/exodus/engineering/drone_fabrication + name = "\improper Engineering Drone Fabrication" + icon_state = "drone_fab" + sound_env = SMALL_ENCLOSED + +/area/exodus/engineering/workshop + name = "\improper Engineering Workshop" + icon_state = "engineering_workshop" + +/area/exodus/engineering/sublevel_access + name = "\improper Engineering Sublevel Access" + +/area/exodus/construction + name = "\improper Engineering Construction Area" + icon_state = "yellow" + req_access = list(access_construction) + +//ATMOSPHERICS. + +/area/exodus/engineering/atmos + name = "\improper Atmospherics" + icon_state = "atmos" + sound_env = LARGE_ENCLOSED + req_access = list(access_atmospherics) + +/area/exodus/engineering/atmos/storage + name = "\improper Atmospherics Storage" + icon_state = "atmos_storage" + sound_env = SMALL_ENCLOSED + +//MEDICAL. + +/area/exodus/medical + req_access = list(access_medical) + +//Reception and such + +/area/exodus/medical/reception + name = "\improper Medbay Reception" + icon_state = "medbay" + ambience = list('sound/ambience/signal.ogg') + +//Hallways + +/area/exodus/medical/medbay + name = "\improper Medbay Hallway - Port" + icon_state = "medbay" + ambience = list('sound/ambience/signal.ogg') + +/area/exodus/medical/medbay2 + name = "\improper Medbay Hallway - Starboard" + icon_state = "medbay2" + ambience = list('sound/ambience/signal.ogg') + +/area/exodus/medical/medbay3 + name = "\improper Medbay Hallway - Fore" + icon_state = "medbay3" + ambience = list('sound/ambience/signal.ogg') + +/area/exodus/medical/medbay4 + name = "\improper Medbay Hallway - Aft" + icon_state = "medbay4" + ambience = list('sound/ambience/signal.ogg') + +//Main + +/area/exodus/medical/chemistry + name = "\improper Chemistry" + icon_state = "chem" + req_access = list(access_chemistry) + +/area/exodus/medical/morgue + name = "\improper Morgue" + icon_state = "morgue" + ambience = list('sound/ambience/ambimo1.ogg','sound/ambience/ambimo2.ogg','sound/music/main.ogg') + req_access = list(access_morgue) + +/area/exodus/medical/sleeper + name = "\improper Emergency Treatment Centre" + icon_state = "exam_room" + +//Surgery + +/area/exodus/medical/surgery + name = "\improper Operating Theatre" + icon_state = "surgery" + +/area/exodus/medical/surgery2 + name = "\improper Operating Theatre 2" + icon_state = "surgery" + +/area/exodus/medical/surgeryobs + name = "\improper Operation Observation Room" + icon_state = "surgery" + +/area/exodus/medical/surgeryprep + name = "\improper Pre-Op Prep Room" + icon_state = "surgery" + +//Cryo + +/area/exodus/medical/cryo + name = "\improper Cryogenics" + icon_state = "cryo" + +/area/exodus/medical/exam_room + name = "\improper Exam Room" + icon_state = "exam_room" + +//Misc + +/area/exodus/medical/psych + name = "\improper Psych Room" + icon_state = "medbay3" + ambience = list('sound/ambience/signal.ogg') + req_access = list(access_psychiatrist) + +/area/exodus/crew_quarters/medbreak + name = "\improper Break Room" + icon_state = "medbay3" + ambience = list('sound/ambience/signal.ogg') + req_access = list(access_medical) + +/area/exodus/medical/biostorage + name = "\improper Secondary Storage" + icon_state = "medbay4" + ambience = list('sound/ambience/signal.ogg') + +//Patient wing + +/area/exodus/medical/patient_a + name = "\improper Isolation A" + icon_state = "patients" + +/area/exodus/medical/patient_b + name = "\improper Isolation B" + icon_state = "patients" + +/area/exodus/medical/patient_c + name = "\improper Isolation C" + icon_state = "patients" + +/area/exodus/medical/patient_wing + name = "\improper Patient Wing" + icon_state = "patients" + +/area/exodus/medical/patient_wing/washroom + name = "\improper Patient Wing Washroom" + req_access = list() + +/area/exodus/medical/ward + name = "\improper Recovery Ward" + icon_state = "patients" + +// Virology + +/area/exodus/medical/virology + name = "\improper Virology" + icon_state = "virology" + req_access = list(access_virology) + +/area/exodus/medical/virology/access + name = "\improper Virology Access" + req_access = list() // This is like the lobby, needs low access to allow passing through in a different direction. + +//Unused + +/area/exodus/medical/genetics + name = "\improper Genetics Lab" + icon_state = "genetics" + +/area/exodus/medical/genetics/cloning + name = "\improper Cloning Lab" + icon_state = "cloning" + +//RESEARCH. + +/area/exodus/research + name = "\improper Research and Development" + icon_state = "research" + req_access = list(access_research) + +//Labs + +/area/exodus/research/lab + name = "\improper Research Lab" + icon_state = "toxlab" + +/area/exodus/research/misc_lab + name = "\improper Miscellaneous Research" + icon_state = "toxmisc" + +/area/exodus/research/storage + name = "\improper Toxins Storage" + icon_state = "toxstorage" + req_access = list(access_tox) + +/area/exodus/research/mixing + name = "\improper Toxins Mixing Room" + icon_state = "toxmix" + req_access = list(access_tox) + +/area/exodus/research/test_area + name = "\improper Toxins Test Area" + icon_state = "toxtest" + req_access = list(access_tox) + +/area/exodus/research/xenobiology + name = "\improper Xenobiology Lab" + icon_state = "xeno_lab" + req_access = list(access_xenobiology, access_research) + +/area/exodus/research/xenobiology/xenoflora + name = "\improper Xenoflora Lab" + icon_state = "xeno_f_lab" + +/area/exodus/research/xenobiology/xenoflora_storage + name = "\improper Xenoflora Storage" + icon_state = "xeno_f_store" + +//Robotics + +/area/exodus/research/robotics + name = "\improper Robotics Lab" + icon_state = "robotics" + req_access = list(access_robotics) + +/area/exodus/research/chargebay + name = "\improper Mech Bay" + icon_state = "mechbay" + req_access = list(access_robotics) + +//Misc + +/area/exodus/research/docking + name = "\improper Research Dock" + icon_state = "research_dock" + +/area/exodus/research/server + name = "\improper Research Server Room" + icon_state = "server" + req_access = list(access_rd) + +//SECURITY. + +/area/exodus/security + req_access = list(access_security) + +//Lobby and such + +/area/exodus/security/lobby + name = "\improper Security Lobby" + icon_state = "security" + req_access = list() + +//Main + +/area/exodus/security/main + name = "\improper Security Office" + icon_state = "security" + +/area/exodus/security/meeting + name = "\improper Security Meeting Room" + icon_state = "security" + +/area/exodus/security/checkpoint2 + name = "\improper Security - Checkpoint" + icon_state = "checkpoint1" + +//Warden and such + +/area/exodus/security/armoury + name = "\improper Security - Armory" + icon_state = "Warden" + req_access = list(access_armory) + +/area/exodus/security/tactical + name = "\improper Security - Tactical Equipment" + icon_state = "Tactical" + req_access = list(access_armory) + +/area/exodus/security/warden + name = "\improper Security - Warden's Office" + icon_state = "Warden" + req_access = list(access_armory) + +//Brig + +/area/exodus/security/brig + name = "\improper Security - Brig" + req_access = list(access_sec_doors) + +/area/exodus/security/brig/processing + name = "\improper Security - Processing" + icon_state = "brig" + +/area/exodus/security/brig/interrogation + name = "\improper Security - Interrogation" + icon_state = "brig" + +/area/exodus/security/brig/solitaryA + name = "\improper Security - Solitary 1" + icon_state = "sec_prison" + req_access = list(access_brig) + +/area/exodus/security/brig/solitaryB + name = "\improper Security - Solitary 2" + icon_state = "sec_prison" + req_access = list(access_brig) + +//Prison + +/area/exodus/security/prison + name = "\improper Security - Prison Wing" + icon_state = "sec_prison" + req_access = list(access_brig) + +/area/exodus/security/prison/restroom + name = "\improper Security - Prison Wing Restroom" + icon_state = "sec_prison" + +/area/exodus/security/prison/dorm + name = "\improper Security - Prison Wing Dormitory" + icon_state = "sec_prison" + +//Misc + +/area/exodus/security/detectives_office + name = "\improper Security - Forensic Office" + icon_state = "detective" + sound_env = MEDIUM_SOFTFLOOR + req_access = list(access_forensics_lockers) + +/area/exodus/security/nuke_storage + name = "\improper Vault" + icon_state = "nuke_storage" + req_access = list(access_heads_vault) + +/area/prison/solitary + name = "Solitary Confinement" + icon_state = "brig" + req_access = list(access_brig) + +/area/exodus/security/vacantoffice + name = "\improper Vacant Office" + icon_state = "security" + req_access = list() + +/area/exodus/security/range + name = "\improper Security - Firing Range" + icon_state = "firingrange" + +//CARGO. + +/area/exodus/quartermaster + name = "\improper Quartermasters" + icon_state = "quart" + req_access = list(access_cargo) + +/area/exodus/quartermaster/office + name = "\improper Supply Office" + icon_state = "quartoffice" + req_access = list(list(access_cargo, access_mining)) + +/area/exodus/quartermaster/storage + name = "\improper Warehouse" + icon_state = "quartstorage" + sound_env = LARGE_ENCLOSED + +/area/exodus/quartermaster/miningdock + name = "\improper Cargo Mining Dock" + icon_state = "mining" + req_access = list(access_mining) + +//qm + +/area/exodus/quartermaster/qm + name = "\improper Cargo - Quartermaster's Office" + icon_state = "quart" + req_access = list(access_qm) + +//CREW. + +/area/exodus/crew_quarters + name = "\improper Dormitories" + icon_state = "Sleep" + +/area/exodus/crew_quarters/sleep + name = "\improper Dormitories" + icon_state = "Sleep" + +/area/exodus/crew_quarters/sleep/cryo + name = "\improper Cryogenic Storage" + icon_state = "Sleep" + +/area/exodus/crew_quarters/sleep/bedrooms + name = "\improper Dormitory Bedroom One" + icon_state = "Sleep" + sound_env = SMALL_SOFTFLOOR + +/area/exodus/crew_quarters/sleep/engi_wash + name = "\improper Engineering Washroom" + icon_state = "toilet" + sound_env = SMALL_ENCLOSED + +/area/exodus/crew_quarters/locker + name = "\improper Locker Room" + icon_state = "locker" + +/area/exodus/crew_quarters/locker/locker_toilet + name = "\improper Locker Toilets" + icon_state = "toilet" + sound_env = SMALL_ENCLOSED + +/area/exodus/crew_quarters/toilet + name = "\improper Dormitory Toilets" + icon_state = "toilet" + sound_env = SMALL_ENCLOSED + +/area/exodus/crew_quarters/fitness + name = "\improper Fitness Room" + icon_state = "fitness" + +/area/exodus/library + name = "\improper Library" + icon_state = "library" + sound_env = LARGE_SOFTFLOOR + + +//Service and such + +/area/exodus/crew_quarters/kitchen + name = "\improper Kitchen" + icon_state = "kitchen" + req_access = list(access_kitchen) + +/area/exodus/crew_quarters/bar + name = "\improper Bar" + icon_state = "bar" + sound_env = LARGE_SOFTFLOOR + +/area/exodus/crew_quarters/bar/cabin + name = "\improper Bartender's Room" + req_access = list(access_bar) + +/area/exodus/janitor + name = "\improper Custodial Closet" + icon_state = "janitor" + req_access = list(access_janitor) + +/area/exodus/hydroponics + name = "\improper Hydroponics" + icon_state = "hydro" + req_access = list(access_hydroponics) + +/area/exodus/hydroponics/garden + name = "\improper Garden" + icon_state = "garden" + req_access = list() + +/area/exodus/chapel + +/area/exodus/chapel/main + name = "\improper Chapel" + icon_state = "chapel" + sound_env = LARGE_ENCLOSED + ambience = list( + 'sound/ambience/ambicha1.ogg', + 'sound/ambience/ambicha2.ogg', + 'sound/ambience/ambicha3.ogg', + 'sound/ambience/ambicha4.ogg', + 'sound/music/traitor.ogg' + ) + +/area/exodus/chapel/office + name = "\improper Chapel Office" + icon_state = "chapeloffice" + req_access = list(access_chapel_office) + +/area/exodus/lawoffice + name = "\improper Internal Affairs" + icon_state = "law" + req_access = list(access_lawyer) + +//AI. + +/area/exodus/ai_monitored + name = "AI Monitored Area" + +/area/exodus/ai_monitored/storage/eva + name = "\improper EVA Storage" + icon_state = "eva" + req_access = list(access_eva) + +/area/exodus/turret_protected + req_access = list(access_ai_upload) + +/area/exodus/turret_protected/ai + name = "\improper AI Chamber" + icon_state = "ai_chamber" + ambience = list('sound/ambience/ambimalf.ogg') + +/area/exodus/turret_protected/ai_cyborg_station + name = "\improper Cyborg Station" + icon_state = "ai_cyborg" + sound_env = SMALL_ENCLOSED + +/area/exodus/turret_protected/ai_upload + name = "\improper AI Upload Chamber" + icon_state = "ai_upload" + ambience = list('sound/ambience/ambimalf.ogg') + +/area/exodus/turret_protected/ai_upload_foyer + name = "\improper AI Upload Access" + icon_state = "ai_foyer" + ambience = list('sound/ambience/ambimalf.ogg') + sound_env = SMALL_ENCLOSED + +/area/exodus/turret_protected/ai_server_room + name = "Messaging Server Room" + icon_state = "ai_server" + sound_env = SMALL_ENCLOSED + req_access = list(access_tcomsat) + +//SHUTTLE. + +/area/shuttle/arrival + name = "\improper Arrival Shuttle" + +/area/shuttle/arrival/station + icon_state = "shuttle" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT + +/area/shuttle/supply_shuttle + name = "Supply Shuttle" + icon_state = "shuttle3" + req_access = list(access_cargo) + +/area/shuttle/escape_shuttle + name = "\improper Emergency Shuttle" + icon_state = "shuttle" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT + +/area/shuttle/administration/centcom + name = "\improper Administration Shuttle" + icon_state = "shuttlered" + req_access = list(access_cent_general) + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT + + +// SUBSTATIONS. (Subtype of maint, that should let them serve as shielded area during radstorm) + +/area/exodus/maintenance/substation + name = "Substation" + icon_state = "substation" + sound_env = SMALL_ENCLOSED + req_access = list(access_engine) + +/area/exodus/maintenance/substation/command // AI and central cluster. This one will be between HoP office and meeting room (probably). + name = "Command Substation" + +/area/exodus/maintenance/substation/engineering // Probably will be connected to engineering SMES room, as wires cannot be crossed properly without them sharing powernets. + name = "Engineering Substation" + +/area/exodus/maintenance/substation/medical // Medbay + name = "Medical Substation" + +/area/exodus/maintenance/substation/research // Research + name = "Research Substation" + +/area/exodus/maintenance/substation/civilian_east // Bar, kitchen, dorms, ... + name = "Civilian East Substation" + +/area/exodus/maintenance/substation/civilian_west // Cargo, PTS, locker room, probably arrivals, ...) + name = "Civilian West Substation" + +/area/exodus/maintenance/substation/security // Security, Brig, Permabrig, etc. + name = "Security Substation" + +/area/exodus/maintenance/substation/atmospherics + name = "Atmospherics Substation" + +//MAINTENANCE. + +/area/exodus/maintenance + area_flags = AREA_FLAG_RAD_SHIELDED + sound_env = TUNNEL_ENCLOSED + turf_initializer = /decl/turf_initializer/maintenance + forced_ambience = list('sound/ambience/maintambience.ogg') + req_access = list(access_maint_tunnels) + +/area/exodus/maintenance/atmos_control + name = "\improper Atmospherics Maintenance" + icon_state = "fpmaint" + req_access = list(list(access_atmospherics, access_maint_tunnels)) + +/area/exodus/maintenance/arrivals + name = "\improper Arrivals Maintenance" + icon_state = "maint_arrivals" + +/area/exodus/maintenance/bar + name = "\improper Bar Maintenance" + icon_state = "maint_bar" + req_access = list(list(access_bar, access_kitchen, access_maint_tunnels)) + +/area/exodus/maintenance/cargo + name = "\improper Cargo Maintenance" + icon_state = "maint_cargo" + req_access = list(list(access_cargo, access_maint_tunnels)) + +/area/exodus/maintenance/engi_engine + name = "\improper Engine Maintenance" + icon_state = "maint_engine" + +/area/exodus/maintenance/engi_shuttle + name = "\improper Engineering Shuttle Access" + icon_state = "maint_e_shuttle" + +/area/exodus/maintenance/engineering + name = "\improper Engineering Maintenance" + icon_state = "maint_engineering" + +/area/exodus/maintenance/evahallway + name = "\improper EVA Maintenance" + icon_state = "maint_eva" + req_access = list(list(access_eva, access_maint_tunnels)) + +/area/exodus/maintenance/dormitory + name = "\improper Dormitory Maintenance" + icon_state = "maint_dormitory" + +/area/exodus/maintenance/library + name = "\improper Library Maintenance" + icon_state = "maint_library" + req_access = list(list(access_library, access_maint_tunnels)) + +/area/exodus/maintenance/locker + name = "\improper Locker Room Maintenance" + icon_state = "maint_locker" + +/area/exodus/maintenance/medbay + name = "\improper Medbay Maintenance" + icon_state = "maint_medbay" + req_access = list(list(access_medical, access_maint_tunnels)) + +/area/exodus/maintenance/research_port + name = "\improper Research Maintenance - Port" + icon_state = "maint_research_port" + +/area/exodus/maintenance/research_shuttle + name = "\improper Research Shuttle Dock Maintenance" + icon_state = "maint_research_shuttle" + +/area/exodus/maintenance/research_starboard + name = "\improper Research Maintenance - Starboard" + icon_state = "maint_research_starboard" + +/area/exodus/maintenance/security_port + name = "\improper Security Maintenance - Port" + icon_state = "maint_security_port" + +/area/exodus/maintenance/security_starboard + name = "\improper Security Maintenance - Starboard" + icon_state = "maint_security_starboard" + +//MISC. MAINTENANCE. + +/area/exodus/maintenance/exterior + name = "\improper Exterior Reinforcements" + icon_state = "maint_security_starboard" + has_gravity = FALSE + turf_initializer = /decl/turf_initializer/maintenance/space + req_access = list(list(access_security, access_engine)) //whatever + +/area/exodus/maintenance/disposal + name = "Waste Disposal" + icon_state = "disposal" + +/area/exodus/maintenance/incinerator + name = "\improper Incinerator" + icon_state = "disposal" + +//SUBLEVEL MAINTENANCE. + +/area/exodus/maintenance/sub + turf_initializer = /decl/turf_initializer/maintenance/heavy + ambience = list( + 'sound/ambience/ambiatm1.ogg', + 'sound/ambience/ambigen3.ogg', + 'sound/ambience/ambigen4.ogg', + 'sound/ambience/ambigen5.ogg', + 'sound/ambience/ambigen6.ogg', + 'sound/ambience/ambigen7.ogg', + 'sound/ambience/ambigen8.ogg', + 'sound/ambience/ambigen9.ogg', + 'sound/ambience/ambigen10.ogg', + 'sound/ambience/ambigen11.ogg', + 'sound/ambience/ambigen12.ogg', + 'sound/ambience/ambimine.ogg', + 'sound/ambience/ambimo2.ogg', + 'sound/ambience/ambisin4.ogg', + 'sound/effects/wind/wind_2_1.ogg', + 'sound/effects/wind/wind_2_2.ogg', + 'sound/effects/wind/wind_3_1.ogg', + ) + +/area/exodus/maintenance/sub/relay_station + name = "\improper Sublevel Maintenance - Relay Station" + icon_state = "blue2" + turf_initializer = null + req_access = list(access_engine) + +/area/exodus/maintenance/sub/fore + name = "\improper Sublevel Maintenance - Fore" + icon_state = "sub_maint_fore" + +/area/exodus/maintenance/sub/aft + name = "\improper Sublevel Maintenance - Aft" + icon_state = "sub_maint_aft" + +/area/exodus/maintenance/sub/port + name = "\improper Sublevel Maintenance - Port" + icon_state = "sub_maint_port" + +/area/exodus/maintenance/sub/starboard + name = "\improper Sublevel Maintenance - Starboard" + icon_state = "sub_maint_starboard" + +/area/exodus/maintenance/sub/central + name = "\improper Sublevel Maintenance - Central" + icon_state = "sub_maint_central" + +/area/exodus/maintenance/sub/command + name = "\improper Sublevel Maintenance - Command" + icon_state = "sub_maint_command" + turf_initializer = null + +///////////// +//ELEVATORS// +///////////// + +/area/turbolift/security_station + name = "Station - By Security" + lift_announce_str = "Arriving at the station level, by the Security department." + +/area/turbolift/security_maintenance + name = "Maintenance - Below Security" + lift_announce_str = "Arriving at the maintenance level, below the Security department." + base_turf = /turf/simulated/floor/plating + +/area/turbolift/research_station + name = "Station - By Research" + lift_announce_str = "Arriving at the station level, by the R&D department." + +/area/turbolift/research_maintenance + name = "Maintenance - Below Research" + lift_announce_str = "Arriving at the maintenance level, below the R&D department." + base_turf = /turf/simulated/floor/plating + +/area/turbolift/engineering_station + name = "Station - By Engineering" + lift_announce_str = "Arriving at the station level, by the Engineering department." + +/area/turbolift/engineering_maintenance + name = "Maintenance - Below Engineering" + lift_announce_str = "Arriving at the maintenance level, below the Engineering department." + base_turf = /turf/simulated/floor/plating + +/area/turbolift/cargo_station + name = "Station - By Cargo" + lift_announce_str = "Arriving at the station level, by the Cargo department." + +/area/turbolift/cargo_maintenance + name = "Maintenance - Below Cargo" + lift_announce_str = "Arriving at the maintenance level, below the Cargo department." + base_turf = /turf/simulated/floor/plating + +///////////////// +//ELEVATORS END// +///////////////// + +//HALLWAYS. + +/area/exodus/hallway + +/area/exodus/hallway/primary + sound_env = LARGE_ENCLOSED + +/area/exodus/hallway/primary/fore + name = "\improper Fore Primary Hallway" + icon_state = "hallF" + +/area/exodus/hallway/primary/starboard + name = "\improper Starboard Primary Hallway" + icon_state = "hallS" + +/area/exodus/hallway/primary/aft + name = "\improper Aft Primary Hallway" + icon_state = "hallA" + +/area/exodus/hallway/primary/port + name = "\improper Port Primary Hallway" + icon_state = "hallP" + +/area/exodus/hallway/primary/central_one + name = "\improper Central Primary Hallway" + icon_state = "hallC1" + +/area/exodus/hallway/primary/central_two + name = "\improper Central Primary Hallway" + icon_state = "hallC2" + +/area/exodus/hallway/primary/central_three + name = "\improper Central Primary Hallway" + icon_state = "hallC3" + +/area/exodus/hallway/secondary/exit + name = "\improper Escape Shuttle Hallway" + icon_state = "escape" + +/area/exodus/hallway/secondary/entry/pods + name = "\improper Arrival Shuttle Hallway - Escape Pods" + icon_state = "entry_pods" + +/area/exodus/hallway/secondary/entry/fore + name = "\improper Arrival Shuttle Hallway - Fore" + icon_state = "entry_1" + +/area/exodus/hallway/secondary/entry/port + name = "\improper Arrival Shuttle Hallway - Port" + icon_state = "entry_2" + +/area/exodus/hallway/secondary/entry/starboard + name = "\improper Arrival Shuttle Hallway - Starboard" + icon_state = "entry_3" + +/area/exodus/hallway/secondary/entry/aft + name = "\improper Arrival Shuttle Hallway - Aft" + icon_state = "entry_4" + +//TELEPORTER. + +/area/exodus/teleporter + name = "\improper Teleporter" + icon_state = "teleporter" + req_access = list(access_teleporter) + +/area/exodus/gateway + name = "\improper Gateway" + icon_state = "teleporter" + +// Thunderdome + +/area/tdome + name = "\improper Thunderdome" + icon_state = "thunder" + requires_power = 0 + dynamic_lighting = 0 + sound_env = ARENA + req_access = list(access_cent_thunder) + +/area/tdome/tdome1 + name = "\improper Thunderdome (Team 1)" + icon_state = "green" + +/area/tdome/tdome2 + name = "\improper Thunderdome (Team 2)" + icon_state = "yellow" + +/area/tdome/tdomeadmin + name = "\improper Thunderdome (Admin.)" + icon_state = "purple" + +/area/tdome/tdomeobserve + name = "\improper Thunderdome (Observer.)" + icon_state = "purple" + +//Centcom + +/area/shuttle/transport1/centcom + icon_state = "shuttle" + name = "\improper Transport Shuttle Centcom" + +/area/centcom/control + name = "\improper Centcom Control" + +/area/centcom/creed + name = "Creed's Office" + +/area/centcom/evac + name = "\improper Centcom Emergency Shuttle" + +/area/centcom/ferry + name = "\improper Centcom Transport Shuttle" + +/area/centcom/living + name = "\improper Centcom Living Quarters" + +/area/centcom/suppy + name = "\improper Centcom Supply Shuttle" + +/area/centcom/test + name = "\improper Centcom Testing Facility" + +/area/shuttle/supply_shuttle + name = "Supply Shuttle" + icon_state = "shuttle3" + req_access = list(access_cargo) + +/area/shuttle/escape_shuttle + name = "\improper Emergency Shuttle" + icon_state = "shuttle" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT + +/area/shuttle/administration/centcom + name = "\improper Administration Shuttle" + icon_state = "shuttlered" + req_access = list(access_cent_general) + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT + +//OFFSTATION. + +// Merchant + +/area/merchant_station + name = "\improper Merchant Station" + icon_state = "LP" + req_access = list(access_merchant) + +/area/shuttle/merchant/home + name = "\improper Merchant Vessel" + icon_state = "shuttlegrn" + req_access = list(access_merchant) + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT diff --git a/maps/exodus/exodus_cameras.dm b/maps/exodus/exodus_cameras.dm new file mode 100644 index 00000000000..dad81d62cc9 --- /dev/null +++ b/maps/exodus/exodus_cameras.dm @@ -0,0 +1,85 @@ +var/const/NETWORK_COMMAND = "Command" +var/const/NETWORK_ENGINE = "Engine" +var/const/NETWORK_ENGINEERING_OUTPOST = "Engineering Outpost" +var/const/NETWORK_PUBLIC_EAST = "Starboard Quarter" +var/const/NETWORK_PUBLIC_WEST = "Port Quarter" + +/datum/map/exodus + // Networks that will show up as options in the camera monitor program + station_networks = list( + NETWORK_ROBOTS, + NETWORK_COMMAND, + NETWORK_ENGINE, + NETWORK_ENGINEERING, + NETWORK_MEDICAL, + NETWORK_RESEARCH, + NETWORK_SECURITY, + NETWORK_PUBLIC_EAST, + NETWORK_PUBLIC_WEST, + NETWORK_ALARM_ATMOS, + NETWORK_ALARM_CAMERA, + NETWORK_ALARM_FIRE, + NETWORK_ALARM_MOTION, + NETWORK_ALARM_POWER, + NETWORK_THUNDER, + ) + +/datum/map/exodus/get_network_access(var/network) + switch(network) + if(NETWORK_COMMAND) + return access_heads + if(NETWORK_ENGINE, NETWORK_ENGINEERING_OUTPOST) + return access_engine + return ..() +// +// Cameras +// + +// Networks +/obj/machinery/camera/network/command + network = list(NETWORK_COMMAND) + +/obj/machinery/camera/network/crescent + network = list(NETWORK_CRESCENT) + +/obj/machinery/camera/network/engine + network = list(NETWORK_ENGINE) + +/obj/machinery/camera/network/engineering_outpost + network = list(NETWORK_ENGINEERING_OUTPOST) + +// Motion +/obj/machinery/camera/motion/engineering_outpost + network = list(NETWORK_ENGINEERING_OUTPOST) + +// All Upgrades +/obj/machinery/camera/all/command + network = list(NETWORK_COMMAND) + +// Compile stubs. +/obj/machinery/camera/motion/command + network = list(NETWORK_COMMAND) + +/obj/machinery/camera/network/maintenance + network = list(NETWORK_ENGINEERING) + +/obj/machinery/camera/xray/security + network = list(NETWORK_SECURITY) + +/obj/machinery/camera/network/exodus + network = list(NETWORK_SECURITY) + +/obj/machinery/camera/network/civilian_east + network = list(NETWORK_PUBLIC_EAST) + +/obj/machinery/camera/network/civilian_west + network = list(NETWORK_PUBLIC_WEST) + +/obj/machinery/camera/network/prison + network = list(NETWORK_SECURITY) + +/obj/machinery/camera/xray/medbay + network = list(NETWORK_SECURITY) + +/obj/machinery/camera/xray/research + network = list(NETWORK_SECURITY) diff --git a/maps/exodus/exodus_define.dm b/maps/exodus/exodus_define.dm new file mode 100644 index 00000000000..069dd016cfe --- /dev/null +++ b/maps/exodus/exodus_define.dm @@ -0,0 +1,45 @@ +/datum/map/exodus + name = "Exodus" + full_name = "JEF Waystation Exodus" + path = "exodus" + + station_name = "JEF Waystation Exodus" + station_short = "\improper Exodus" + dock_name = "NAS Crescent" + boss_name = "JEF Oversight Board" + boss_short = "\improper JEF Board" + company_name = "Joint Exploration Foundation" + company_short = "JEF" + system_name = "Nyx" + + station_levels = list(1,2) + contact_levels = list(1,2) + player_levels = list(1,2) + admin_levels = list(3,4) + empty_levels = list(5) + + accessible_z_levels = list("1"=1,"2"=1,"5"=30) + + overmap_size = 35 + overmap_event_areas = 34 + use_overmap = TRUE + num_exoplanets = 1 + + away_site_budget = 5 + min_offmap_players = 12 + + lobby_screens = list( + 'maps/exodus/lobby/exodus.png' + ) + + evac_controller_type = /datum/evacuation_controller/shuttle + +// For /datum/evacuation_controller/shuttle + + shuttle_docked_message = "The public ferry to %dock_name% has docked with the station. It will depart in approximately %ETD%" + shuttle_leaving_dock = "The public ferry has left the station. Estimate %ETA% until the ferry docks at %dock_name%." + shuttle_called_message = "A public ferry to %dock_name% has been scheduled. It will arrive in approximately %ETA%" + shuttle_recall_message = "The scheduled ferry has been cancelled." + +/datum/map/exodus/get_map_info() + return "Welcome to JEF Waystation Exodus, A recommissioned Nanotrasen derelict.
It's... Probably not going to kill you. Welcome aboard!" diff --git a/maps/exodus/exodus_elevator.dm b/maps/exodus/exodus_elevator.dm new file mode 100644 index 00000000000..67a00207cf2 --- /dev/null +++ b/maps/exodus/exodus_elevator.dm @@ -0,0 +1,42 @@ +/obj/turbolift_map_holder/exodus + depth = 2 + lift_size_x = 3 + lift_size_y = 3 + +/obj/turbolift_map_holder/exodus/sec + name = "Exodus turbolift map placeholder - Securiy" + dir = EAST + + areas_to_use = list( + /area/turbolift/security_maintenance, + /area/turbolift/security_station + ) + +/obj/turbolift_map_holder/exodus/research + name = "Exodus turbolift map placeholder - Research" + dir = WEST + + areas_to_use = list( + /area/turbolift/research_maintenance, + /area/turbolift/research_station + ) + +/obj/turbolift_map_holder/exodus/engineering + name = "Exodus turbolift map placeholder - Engineering" + icon = 'icons/obj/turbolift_preview_3x3.dmi' + dir = EAST + lift_size_x = 4 + lift_size_y = 4 + + areas_to_use = list( + /area/turbolift/engineering_maintenance, + /area/turbolift/engineering_station + ) + +/obj/turbolift_map_holder/exodus/cargo + name = "Exodus turbolift map placeholder - Cargo" + + areas_to_use = list( + /area/turbolift/cargo_maintenance, + /area/turbolift/cargo_station + ) diff --git a/maps/exodus/exodus_holodecks.dm b/maps/exodus/exodus_holodecks.dm new file mode 100644 index 00000000000..912026383e0 --- /dev/null +++ b/maps/exodus/exodus_holodecks.dm @@ -0,0 +1,162 @@ + +/datum/map/exodus + + holodeck_programs = list( + "emptycourt" = new/datum/holodeck_program(/area/holodeck/source_emptycourt, list('sound/music/THUNDERDOME.ogg')), + "boxingcourt" = new/datum/holodeck_program(/area/holodeck/source_boxingcourt, list('sound/music/THUNDERDOME.ogg')), + "basketball" = new/datum/holodeck_program(/area/holodeck/source_basketball, list('sound/music/THUNDERDOME.ogg')), + "thunderdomecourt" = new/datum/holodeck_program(/area/holodeck/source_thunderdomecourt, list('sound/music/THUNDERDOME.ogg')), + "beach" = new/datum/holodeck_program(/area/holodeck/source_beach, list('sound/music/europa/WildEncounters.ogg')), + "desert" = new/datum/holodeck_program(/area/holodeck/source_desert, + list( + 'sound/effects/wind/wind_2_1.ogg', + 'sound/effects/wind/wind_2_2.ogg', + 'sound/effects/wind/wind_3_1.ogg', + 'sound/effects/wind/wind_4_1.ogg', + 'sound/effects/wind/wind_4_2.ogg', + 'sound/effects/wind/wind_5_1.ogg' + ) + ), + "snowfield" = new/datum/holodeck_program(/area/holodeck/source_snowfield, + list( + 'sound/effects/wind/wind_2_1.ogg', + 'sound/effects/wind/wind_2_2.ogg', + 'sound/effects/wind/wind_3_1.ogg', + 'sound/effects/wind/wind_4_1.ogg', + 'sound/effects/wind/wind_4_2.ogg', + 'sound/effects/wind/wind_5_1.ogg' + ) + ), + "space" = new/datum/holodeck_program(/area/holodeck/source_space, + list( + 'sound/ambience/ambispace.ogg', + 'sound/music/main.ogg', + 'sound/music/space.ogg', + 'sound/music/traitor.ogg', + ) + ), + "picnicarea" = new/datum/holodeck_program(/area/holodeck/source_picnicarea, list('sound/music/title2.ogg')), + "theatre" = new/datum/holodeck_program(/area/holodeck/source_theatre), + "meetinghall" = new/datum/holodeck_program(/area/holodeck/source_meetinghall), + "courtroom" = new/datum/holodeck_program(/area/holodeck/source_courtroom, list('sound/music/traitor.ogg')), + "volleyball" = new/datum/holodeck_program(/area/holodeck/source_volleyball, list('sound/music/THUNDERDOME.ogg')), + "cafe" = new/datum/holodeck_program(/area/holodeck/source_cafe), + "wildlifecarp" = new/datum/holodeck_program(/area/holodeck/source_wildlife, list()), + "temple" = new/datum/holodeck_program(/area/holodeck/source_temple), + "plaza" = new/datum/holodeck_program(/area/holodeck/source_plaza), + "turnoff" = new/datum/holodeck_program(/area/holodeck/source_plating, list()) + ) + + holodeck_supported_programs = list( + + "ExodusMainPrograms" = list( + "Basketball Court" = "basketball", + "Beach" = "beach", + "Boxing Ring" = "boxingcourt", + "Cafe" = "cafe", + "Courtroom" = "courtroom", + "Desert" = "desert", + "Empty Court" = "emptycourt", + "Meeting Hall" = "meetinghall", + "Picnic Area" = "picnicarea", + "Snow Field" = "snowfield", + "Space" = "space", + "Theatre" = "theatre", + "Thunderdome Court" = "thunderdomecourt", + "Volleyball Court" = "volleyball", + "Bathhouse" = "temple", + "Plaza" = "plaza" + ) + + ) + + holodeck_restricted_programs = list( + + "ExodusMainPrograms" = list( + "Wildlife Simulation" = "wildlifecarp" + ) + + ) + +// Areas + +/area/holodeck + name = "\improper Holodeck" + icon_state = "Holodeck" + dynamic_lighting = 0 + sound_env = LARGE_ENCLOSED + area_flags = AREA_FLAG_NO_MODIFY + +/area/holodeck/alphadeck + name = "\improper Holodeck Alpha" + +/area/holodeck/source_plating + name = "\improper Holodeck - Off" + +/area/holodeck/source_emptycourt + name = "\improper Holodeck - Empty Court" + sound_env = ARENA + +/area/holodeck/source_boxingcourt + name = "\improper Holodeck - Boxing Court" + sound_env = ARENA + +/area/holodeck/source_basketball + name = "\improper Holodeck - Basketball Court" + sound_env = ARENA + +/area/holodeck/source_thunderdomecourt + name = "\improper Holodeck - Thunderdome Court" + sound_env = ARENA + +/area/holodeck/source_courtroom + name = "\improper Holodeck - Courtroom" + sound_env = AUDITORIUM + +/area/holodeck/source_beach + name = "\improper Holodeck - Beach" + sound_env = PLAIN + +/area/holodeck/source_wildlife + name = "\improper Holodeck - Wildlife Simulation" + +/area/holodeck/source_meetinghall + name = "\improper Holodeck - Meeting Hall" + sound_env = AUDITORIUM + +/area/holodeck/source_theatre + name = "\improper Holodeck - Theatre" + sound_env = CONCERT_HALL + +/area/holodeck/source_picnicarea + name = "\improper Holodeck - Picnic Area" + sound_env = PLAIN + +/area/holodeck/source_snowfield + name = "\improper Holodeck - Snow Field" + sound_env = FOREST + +/area/holodeck/source_desert + name = "\improper Holodeck - Desert" + sound_env = PLAIN + +/area/holodeck/source_space + name = "\improper Holodeck - Space" + has_gravity = 0 + sound_env = SPACE + +/area/holodeck/source_cafe + name = "\improper Holodeck - Cafe" + sound_env = PLAIN + +/area/holodeck/source_volleyball + name = "\improper Holodeck - Volleyball" + sound_env = PLAIN + +/area/holodeck/source_temple + name = "\improper Holodeck - Temple" + sound_env = SMALL_ENCLOSED + +/area/holodeck/source_plaza + name = "\improper Holodeck - Plaza" + sound_env = SMALL_ENCLOSED \ No newline at end of file diff --git a/maps/exodus/exodus_jobs.dm b/maps/exodus/exodus_jobs.dm new file mode 100644 index 00000000000..26c9e56c68e --- /dev/null +++ b/maps/exodus/exodus_jobs.dm @@ -0,0 +1,88 @@ +/datum/map/exodus + allowed_jobs = list( + /datum/job/captain, + /datum/job/hop, + /datum/job/chaplain, + /datum/job/bartender, + /datum/job/chef, + /datum/job/hydro, + /datum/job/qm, + /datum/job/cargo_tech, + /datum/job/mining, + /datum/job/janitor, + /datum/job/librarian, + /datum/job/lawyer, + /datum/job/chief_engineer, + /datum/job/engineer, + /datum/job/cmo, + /datum/job/doctor, + /datum/job/chemist, + /datum/job/psychiatrist, + /datum/job/rd, + /datum/job/scientist, + /datum/job/roboticist, + /datum/job/hos, + /datum/job/detective, + /datum/job/warden, + /datum/job/officer, + /datum/job/cyborg, + /datum/job/ai + ) + + species_to_job_whitelist = list( + /datum/species/adherent = list( + /datum/job/ai, + /datum/job/cyborg, + /datum/job/assistant, + /datum/job/janitor, + /datum/job/chef, + /datum/job/bartender, + /datum/job/cargo_tech, + /datum/job/engineer, + /datum/job/roboticist, + /datum/job/chemist, + /datum/job/scientist, + /datum/job/mining + ), + /datum/species/machine = list( + /datum/job/ai, + /datum/job/cyborg, + /datum/job/assistant, + /datum/job/janitor, + /datum/job/chef, + /datum/job/bartender, + /datum/job/cargo_tech, + /datum/job/engineer, + /datum/job/roboticist, + /datum/job/chemist, + /datum/job/scientist, + /datum/job/mining + ), + /datum/species/nabber = list( + /datum/job/ai, + /datum/job/cyborg, + /datum/job/assistant, + /datum/job/janitor, + /datum/job/chef, + /datum/job/bartender, + /datum/job/cargo_tech, + /datum/job/roboticist, + /datum/job/chemist + ) + ) + +#define HUMAN_ONLY_JOBS /datum/job/captain, /datum/job/hop, /datum/job/hos + species_to_job_blacklist = list( + /datum/species/unathi = list( + HUMAN_ONLY_JOBS + )/*, + /datum/species/tajaran = list( + HUMAN_ONLY_JOBS + )*/ + ) + +#undef HUMAN_ONLY_JOBS + +//Force ZAC +/datum/job + required_language = LANGUAGE_HUMAN_EURO diff --git a/maps/exodus/exodus_loadout.dm b/maps/exodus/exodus_loadout.dm new file mode 100644 index 00000000000..dbb5ad96d64 --- /dev/null +++ b/maps/exodus/exodus_loadout.dm @@ -0,0 +1,46 @@ +//TODO: Clean these up and replace these with the Torch's 'selection' versions. + +/datum/gear/storage/brown_vest + display_name = "webbing, brown" + path = /obj/item/clothing/accessory/storage/brown_vest + cost = 3 + allowed_roles = list(/datum/job/chief_engineer, /datum/job/engineer, /datum/job/roboticist, /datum/job/qm, /datum/job/cargo_tech, /datum/job/mining, /datum/job/janitor) + +/datum/gear/storage/black_vest + display_name = "webbing, black" + path = /obj/item/clothing/accessory/storage/black_vest + cost = 3 + allowed_roles = list(/datum/job/hos, /datum/job/warden, /datum/job/detective, /datum/job/officer) + +/datum/gear/storage/white_vest + display_name = "webbing, white" + path = /obj/item/clothing/accessory/storage/white_vest + cost = 3 + allowed_roles = list(/datum/job/cmo, /datum/job/doctor) + +/datum/gear/storage/brown_drop_pouches + display_name = "drop pouches, brown" + path = /obj/item/clothing/accessory/storage/brown_drop + cost = 3 + allowed_roles = list(/datum/job/chief_engineer, /datum/job/engineer, /datum/job/roboticist, /datum/job/qm, /datum/job/cargo_tech, /datum/job/mining, /datum/job/janitor) + +/datum/gear/storage/black_drop_pouches + display_name = "drop pouches, black" + path = /obj/item/clothing/accessory/storage/black_drop + cost = 3 + allowed_roles = list(/datum/job/hos, /datum/job/warden, /datum/job/detective, /datum/job/officer) + +/datum/gear/storage/white_drop_pouches + display_name = "drop pouches, white" + path = /obj/item/clothing/accessory/storage/white_drop + cost = 3 + allowed_roles = list(/datum/job/cmo, /datum/job/doctor) + +/datum/gear/eyes/meson + allowed_roles = list(/datum/job/chief_engineer, /datum/job/engineer, /datum/job/mining, /datum/job/scientist, /datum/job/rd) + +/datum/gear/eyes/material + allowed_roles = list(/datum/job/chief_engineer, /datum/job/engineer, /datum/job/mining) + +/datum/gear/eyes/janitor + allowed_roles = list(/datum/job/janitor) diff --git a/maps/exodus/exodus_npcs.dm b/maps/exodus/exodus_npcs.dm new file mode 100644 index 00000000000..b4e792839cf --- /dev/null +++ b/maps/exodus/exodus_npcs.dm @@ -0,0 +1,9 @@ +/obj/random_multi/single_item/runtime + name = "Multi Point - Runtime" + id = "Runtime" + item_path = /mob/living/simple_animal/passive/cat/fluff/Runtime + +/obj/random_multi/single_item/poppy + name = "Multi Point - Poppy" + id = "Poppy" + item_path = /mob/living/simple_animal/passive/opossum/poppy diff --git a/maps/exodus/exodus_overmap.dm b/maps/exodus/exodus_overmap.dm new file mode 100644 index 00000000000..d5e25330832 --- /dev/null +++ b/maps/exodus/exodus_overmap.dm @@ -0,0 +1,67 @@ +/obj/effect/overmap/visitable/ship/exodus + name = "Exodus Station" + color = "#00ffff" + start_x = 4 + start_y = 4 + vessel_mass = 50000 + max_speed = 1/(20 SECONDS) + burn_delay = 20 SECONDS + initial_generic_waypoints = list( + "nav_exodus_port_upper", + "nav_exodus_fore_upper", + "nav_exodus_aft_upper", + "nav_exodus_starboard_lower", + "nav_exodus_port_lower", + "nav_exodus_fore_lower", + "nav_exodus_aft_lower", + "nav_exodus_engineering_pod_dock", + "nav_exodus_mining_pod_dock", + "nav_exodus_research_pod_dock" + ) + initial_restricted_waypoints = list( + "Cyclopes" = list("nav_merc_arivals"), //Mercship Dock + "Rescue" = list("nav_ert_dock") + ) + +/obj/effect/overmap/visitable/ship/landable/pod + name = "Generic Pod" + desc = "A single-seater short-range pod." + max_speed = 1/(2 SECONDS) + burn_delay = 1 SECONDS + vessel_mass = 4000 + fore_dir = NORTH + skill_needed = SKILL_BASIC + vessel_size = SHIP_SIZE_SMALL + +// Overmap transit landmarks +/obj/effect/shuttle_landmark/exodus_main_starboard + name = "Exodus starboard approach" + landmark_tag = "nav_exodus_starboard_upper" + +/obj/effect/shuttle_landmark/exodus_main_port + name = "Exodus port approach" + landmark_tag = "nav_exodus_port_upper" + +/obj/effect/shuttle_landmark/exodus_main_fore + name = "Exodus fore approach" + landmark_tag = "nav_exodus_fore_upper" + +/obj/effect/shuttle_landmark/exodus_main_aft + name = "Exodus aft approach" + landmark_tag = "nav_exodus_aft_upper" + +/obj/effect/shuttle_landmark/exodus_sub_starboard + name = "Exodus starboard underside" + landmark_tag = "nav_exodus_starboard_lower" + +/obj/effect/shuttle_landmark/exodus_sub_port + name = "Exodus port underside" + landmark_tag = "nav_exodus_port_lower" + +/obj/effect/shuttle_landmark/exodus_sub_fore + name = "Exodus fore underside" + landmark_tag = "nav_exodus_fore_lower" + +/obj/effect/shuttle_landmark/exodus_sub_aft + name = "Exodus aft underside" + landmark_tag = "nav_exodus_aft_lower" diff --git a/maps/exodus/exodus_overrides.dm b/maps/exodus/exodus_overrides.dm new file mode 100644 index 00000000000..c7ebad22db3 --- /dev/null +++ b/maps/exodus/exodus_overrides.dm @@ -0,0 +1,14 @@ +/obj/machinery/light_switch + on = 1 //People start at their desks. + +/obj/item/light + b_outer_range = 5 + +/obj/item/light/bulb + b_outer_range = 5 + +/obj/item/light/tube + b_outer_range = 6 + +/datum/language/human/euro + warning = "Automatically given if spawning on the Exodus." diff --git a/maps/exodus/exodus_presets.dm b/maps/exodus/exodus_presets.dm new file mode 100644 index 00000000000..341130cc700 --- /dev/null +++ b/maps/exodus/exodus_presets.dm @@ -0,0 +1,9 @@ +/obj/machinery/power/smes/buildable/preset/exodus/engine_main + uncreated_component_parts = list( + /obj/item/stock_parts/smes_coil/super_io = 2, + /obj/item/stock_parts/smes_coil/super_capacity = 2) + _input_maxed = TRUE + _output_maxed = TRUE + _input_on = TRUE + _output_on = TRUE + _fully_charged = TRUE diff --git a/maps/exodus/exodus_setup.dm b/maps/exodus/exodus_setup.dm new file mode 100644 index 00000000000..1cbd0e5bd04 --- /dev/null +++ b/maps/exodus/exodus_setup.dm @@ -0,0 +1,45 @@ +/datum/map/exodus/send_welcome() + var/obj/effect/overmap/visitable/ship/exodus = SSshuttle.ship_by_type(/obj/effect/overmap/visitable/ship/exodus) + + var/welcome_text = "
[GLOB.using_map.station_name] Sensor Readings:
" + welcome_text += "Report generated on [stationdate2text()] at [stationtime2text()]


" + welcome_text += "
Current system:
[exodus ? GLOB.using_map.system_name : "Unknown"]

" + + if(exodus) //If the overmap is disabled, it's possible for there to be no exodus. + var/list/space_things = list() + welcome_text += "Current Coordinates:
[exodus.x]:[exodus.y]

" + welcome_text += "Next system targeted for jump:
[generate_system_name()]

" + welcome_text += "Travel time to [company_name]:
[rand(15,45)] days

" + welcome_text += "Time since last port visit:
[rand(60,180)] days

" + welcome_text += "Scan results show the following points of interest:
" + + for(var/zlevel in map_sectors) + var/obj/effect/overmap/visitable/O = map_sectors[zlevel] + if(O.name == exodus.name) + continue + if(istype(O, /obj/effect/overmap/visitable/ship/landable)) //Don't show shuttles + continue + if (O.hide_from_reports) + continue + space_things |= O + + var/list/distress_calls + for(var/obj/effect/overmap/visitable/O in space_things) + var/location_desc = " at present co-ordinates." + if(O.loc != exodus.loc) + var/bearing = round(90 - Atan2(O.x - exodus.x, O.y - exodus.y),5) //fucking triangles how do they work + if(bearing < 0) + bearing += 360 + location_desc = ", bearing [bearing]." + if(O.has_distress_beacon) + LAZYADD(distress_calls, "[O.has_distress_beacon][location_desc]") + welcome_text += "
  • \A [O.name][location_desc]
  • " + + if(LAZYLEN(distress_calls)) + welcome_text += "
    Distress calls logged:
    [jointext(distress_calls, "
    ")]
    " + else + welcome_text += "
    No distress calls logged.
    " + welcome_text += "
    " + + post_comm_message("[GLOB.using_map.station_short] Sensor Readings", welcome_text) + minor_announcement.Announce(message = "New [GLOB.using_map.station_short] Update available at all communication consoles.") diff --git a/maps/exodus/exodus_shuttles.dm b/maps/exodus/exodus_shuttles.dm new file mode 100644 index 00000000000..5f2f9bd1327 --- /dev/null +++ b/maps/exodus/exodus_shuttles.dm @@ -0,0 +1,304 @@ +#define ESCAPE_POD(NUMBER) \ +/datum/shuttle/autodock/ferry/escape_pod/pod##NUMBER { \ + shuttle_area = /area/shuttle/escape_pod_##NUMBER; \ + name = "Escape Pod " + #NUMBER; \ + dock_target = "escape_pod_" + #NUMBER; \ + arming_controller = "escape_pod_"+ #NUMBER +"_berth"; \ + waypoint_station = "escape_pod_"+ #NUMBER +"_start"; \ + landmark_transition = "escape_pod_"+ #NUMBER +"_transit"; \ + waypoint_offsite = "escape_pod_"+ #NUMBER +"_out"; \ +} \ +/obj/effect/shuttle_landmark/escape_pod/start/pod##NUMBER { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_start"; \ + docking_controller = "escape_pod_"+ #NUMBER +"_berth"; \ +} \ +/obj/effect/shuttle_landmark/escape_pod/transit/pod##NUMBER { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_transit"; \ +} \ +/obj/effect/shuttle_landmark/escape_pod/out/pod##NUMBER { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_out"; \ +} \ +/area/shuttle/escape_pod_##NUMBER { \ + name = "Escape Pod " + #NUMBER; \ + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT; \ +} + +ESCAPE_POD(1) +ESCAPE_POD(2) +ESCAPE_POD(3) +ESCAPE_POD(4) + +//Station departmental shuttles + +// Sci/Explo +/obj/machinery/computer/shuttle_control/explore/research + name = "research pod control console" + shuttle_tag = "Research Pod" +/datum/shuttle/autodock/overmap/research + name = "Research Pod" + shuttle_area = /area/ship/exodus_pod_research + logging_home_tag = "nav_exodus_research_pod_dock" + dock_target = "research_shuttle" + current_location = "nav_exodus_research_pod_dock" +/area/ship/exodus_pod_research + name = "Research Pod" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT +/obj/effect/overmap/visitable/ship/landable/pod/research + name = "Exodus Research Pod" + shuttle = "Research Pod" +/obj/effect/shuttle_landmark/research_pod_dock + name = "Research Docking Port" + landmark_tag = "nav_exodus_research_pod_dock" + docking_controller = "research_dock_airlock" + +// Mining +/obj/machinery/computer/shuttle_control/explore/mining + name = "mining pod control console" + shuttle_tag = "Mining Pod" +/datum/shuttle/autodock/overmap/mining + name = "Mining Pod" + shuttle_area = /area/ship/exodus_pod_mining + logging_home_tag = "nav_exodus_mining_pod_dock" + dock_target = "mining_shuttle" + current_location = "nav_exodus_mining_pod_dock" +/area/ship/exodus_pod_mining + name = "Mining Pod" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT +/obj/effect/overmap/visitable/ship/landable/pod/mining + name = "Exodus Mining Pod" + shuttle = "Mining Pod" +/obj/effect/shuttle_landmark/mining_pod_dock + name = "Mining Docking Port" + landmark_tag = "nav_exodus_mining_pod_dock" + docking_controller = "mining_dock_airlock" + +// Engineering +/obj/machinery/computer/shuttle_control/explore/engineering + name = "engineering pod control console" + shuttle_tag = "Engineering Pod" +/datum/shuttle/autodock/overmap/engineering + name = "Engineering Pod" + shuttle_area = /area/ship/exodus_pod_engineering + logging_home_tag = "nav_exodus_engineering_pod_dock" + dock_target = "engineering_shuttle" + current_location = "nav_exodus_engineering_pod_dock" +/area/ship/exodus_pod_engineering + name = "Engineering Pod" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_ION_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT +/obj/effect/overmap/visitable/ship/landable/pod/engineering + name = "Exodus Engineering Pod" + shuttle = "Engineering Pod" +/obj/effect/shuttle_landmark/engineering_pod_dock + name = "Engineering Docking Port" + landmark_tag = "nav_exodus_engineering_pod_dock" + docking_controller = "engineering_dock_airlock" + +//Ninja Shuttle. +/datum/shuttle/autodock/multi/antag/ninja + destination_tags = list( + "nav_ninja_deck1", + "nav_ninja_deck2", + "nav_ninja_deck3", + "nav_ninja_deck4", + "nav_ninja_deck5", + "nav_ninja_hanger", + "nav_away_6", + "nav_derelict_5", + "nav_cluster_6", + "nav_ninja_start", + "nav_lost_supply_base_antag", + "nav_marooned_antag", + "nav_smugglers_antag", + "nav_magshield_antag", + "nav_casino_antag", + "nav_yacht_antag", + "nav_slavers_base_antag" + ) + +/obj/effect/shuttle_landmark/ninja/arivals + name = "Contract target docking port" + landmark_tag = "nav_ninja_arivals" + + +//Merchant + +/datum/shuttle/autodock/ferry/merchant + name = "Merchant" + warmup_time = 10 + shuttle_area = /area/shuttle/merchant/home + waypoint_station = "nav_merchant_start" + waypoint_offsite = "nav_merchant_out" + dock_target = "merchant_ship_dock" + +/obj/effect/shuttle_landmark/merchant/start + name = "Merchant Base" + landmark_tag = "nav_merchant_start" + docking_controller = "merchant_station_dock" + +/obj/effect/shuttle_landmark/merchant/out + name = "Exodus north dock" + landmark_tag = "nav_merchant_out" + docking_controller = "merchant_shuttle_station_dock" + +//Centcom + +/datum/shuttle/autodock/ferry/emergency/escape_shuttle + name = "Escape Shuttle" + warmup_time = 10 + location = 1 + crack_docking_codes = TRUE + dock_target = "escape_shuttle" + shuttle_area = /area/shuttle/escape_shuttle + waypoint_offsite = "nav_escape_shuttle_start" + waypoint_station = "nav_escape_shuttle_station" + landmark_transition = "nav_escape_shuttle_transit" + +/obj/effect/shuttle_landmark/escape_shuttle/start + landmark_tag = "nav_escape_shuttle_start" + docking_controller = "centcom_escape_dock" + +/obj/effect/shuttle_landmark/escape_shuttle/transit + landmark_tag = "nav_escape_shuttle_transit" + +/obj/effect/shuttle_landmark/escape_shuttle/station + landmark_tag = "nav_escape_shuttle_station" + docking_controller = "escape_dock" + +/datum/shuttle/autodock/ferry/supply/cargo + name = "Supply Shuttle" + warmup_time = 10 + location = 1 + crack_docking_codes = TRUE + dock_target = "supply_shuttle" + shuttle_area = /area/shuttle/supply_shuttle + waypoint_offsite = "nav_cargo_start" + waypoint_station = "nav_cargo_station" + +/obj/effect/shuttle_landmark/supply/start + landmark_tag = "nav_cargo_start" + docking_controller = "cargo_bay_centcom" + +/obj/effect/shuttle_landmark/supply/station + landmark_tag = "nav_cargo_station" + docking_controller = "cargo_bay" + +/datum/shuttle/autodock/ferry/centcom + name = "Centcom" + location = 1 + warmup_time = 10 + shuttle_area = /area/shuttle/transport1/centcom + dock_target = "centcom_shuttle" + waypoint_offsite = "nav_ferry_start" + waypoint_station = "nav_ferry_out" + +/obj/effect/shuttle_landmark/ferry/start + name = "Centcom" + landmark_tag = "nav_ferry_start" + docking_controller = "centcom_shuttle_bay" + +/obj/effect/shuttle_landmark/ferry/out + name = "Docking Bay" + landmark_tag = "nav_ferry_out" + docking_controller = "centcom_shuttle_dock_airlock" + +/obj/effect/shuttle_landmark/merc/arivals + name = "Exodus north dock" + landmark_tag = "nav_merc_arivals" + docking_controller = "nuke_shuttle_dock_airlock" + +//Admin + +/datum/shuttle/autodock/ferry/administration + name = "Administration" + warmup_time = 10 //want some warmup time so people can cancel. + shuttle_area = /area/shuttle/administration/centcom + dock_target = "admin_shuttle" + waypoint_station = "nav_admin_start" + waypoint_offsite = "nav_admin_out" + +/obj/effect/shuttle_landmark/admin/start + name = "Centcom" + landmark_tag = "nav_admin_start" + docking_controller = "admin_shuttle" + base_area = /area/centcom + base_turf = /turf/simulated/floor/plating + +/obj/effect/shuttle_landmark/admin/out + name = "Exodus north dock" + landmark_tag = "nav_admin_out" + docking_controller = "admin_shuttle_dock_airlock" + +//NT Rescue Shuttle + +/datum/shuttle/autodock/multi/antag/rescue + destination_tags = list( + "nav_ert_hanger", + "nav_away_4", + "nav_derelict_4", + "nav_cluster_4", + "nav_ert_dock", + "nav_ert_start", + "nav_lost_supply_base_antag", + "nav_marooned_antag", + "nav_smugglers_antag", + "nav_magshield_antag", + "nav_casino_antag", + "nav_yacht_antag", + "nav_slavers_base_antag", + ) + +/obj/effect/shuttle_landmark/ert/arivals + name = "Exodus arivals south dock" + landmark_tag = "nav_ert_arivals" + +//Skipjack +/datum/shuttle/autodock/multi/antag/skipjack + destination_tags = list( + "nav_skipjack_arivals", + "nav_away_7", + "nav_derelict_7", + "nav_cluster_7", + "nav_skipjack_dock", + "nav_skipjack_start", + "nav_lost_supply_base_antag", + "nav_marooned_antag", + "nav_smugglers_antag", + "nav_magshield_antag", + "nav_casino_antag", + "nav_yacht_antag", + "nav_slavers_base_antag", + ) + +/obj/effect/shuttle_landmark/skipjack/arivals + name = "Exodus arivals south dock" + landmark_tag = "nav_skipjack_arivals" + +//SCGMC Assault Pod + +/datum/shuttle/autodock/ferry/specops/ert + name = "Special Operations" + warmup_time = 10 + shuttle_area = /area/shuttle/specops/centcom + dock_target = "specops_shuttle_fore" + waypoint_station = "nav_specops_start" + waypoint_offsite = "nav_specops_out" + +/obj/effect/shuttle_landmark/specops/start + name = "Centcom" + landmark_tag = "nav_specops_start" + docking_controller = "specops_shuttle_port" + +/obj/effect/shuttle_landmark/specops/out + name = "Docking Bay" + landmark_tag = "nav_specops_out" + docking_controller = "specops_dock_airlock" + +//generic docking ports (Work this shit out if anyone wants to slap their nipples at it) + //Large + + //Small + + +//Makes the deck management program use other access types +/datum/nano_module/deck_management + default_access = list(access_cargo, access_heads) diff --git a/maps/exodus/exodus_unit_testing.dm b/maps/exodus/exodus_unit_testing.dm new file mode 100644 index 00000000000..7218f5e64bb --- /dev/null +++ b/maps/exodus/exodus_unit_testing.dm @@ -0,0 +1,56 @@ +/datum/map/exodus + // Unit test exemptions + apc_test_exempt_areas = list( + /area/space = NO_SCRUBBER|NO_VENT|NO_APC, + /area/exoplanet = NO_SCRUBBER|NO_VENT|NO_APC, + /area/exodus/construction = NO_SCRUBBER|NO_VENT, + /area/exodus/engineering/atmos/storage = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/arrivals = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/atmos_control = 0, + /area/exodus/maintenance/auxsolarport = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/auxsolarstarboard = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/dormitory = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/engi_shuttle = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/evahallway = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/exterior = NO_SCRUBBER|NO_VENT|NO_APC, + /area/exodus/maintenance/medbay = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/incinerator = NO_SCRUBBER, + /area/exodus/maintenance/foresolar = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/portsolar = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/research_port = 0, + /area/exodus/maintenance/research_starboard = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/starboardsolar = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/sub/aft = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/sub/fore = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/sub/port = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/sub/starboard = NO_SCRUBBER|NO_VENT, + /area/exodus/maintenance/sub/relay_station = 0, + /area/exodus/maintenance/sub/command = 0, + /area/exodus/maintenance/substation/command = 0, + /area/exodus/maintenance/telecomms = 0, + /area/exodus/medical/genetics = NO_APC, + /area/exodus/medical/genetics/cloning = NO_APC, + /area/exodus/research/test_area = NO_SCRUBBER|NO_VENT, + /area/exodus/research/server = 0, + /area/shuttle = NO_SCRUBBER|NO_VENT|NO_APC, + /area/turbolift = NO_SCRUBBER|NO_VENT|NO_APC, + /area/exodus/solar = NO_SCRUBBER|NO_VENT|NO_APC, + /area/exodus/storage/emergency = NO_SCRUBBER|NO_VENT, + /area/exodus/storage/emergency2 = NO_SCRUBBER|NO_VENT, + /area/ship/exodus_pod_engineering = NO_SCRUBBER|NO_VENT, + /area/ship/exodus_pod_mining = NO_SCRUBBER|NO_VENT, + /area/ship/exodus_pod_research = NO_SCRUBBER|NO_VENT, + /area/holodeck/alphadeck = NO_SCRUBBER|NO_VENT|NO_APC + ) + + area_coherency_test_exempt_areas = list( + /area/space, + /area/exodus/maintenance/exterior) + + area_coherency_test_subarea_count = list( + /area/exodus/engineering/atmos = 4, + /area/exodus/maintenance/incinerator = 2) + +/obj/effect/landmark/map_data/exodus + height = 2 diff --git a/maps/exodus/items/mecha.dm b/maps/exodus/items/mecha.dm new file mode 100644 index 00000000000..8709fc37b87 --- /dev/null +++ b/maps/exodus/items/mecha.dm @@ -0,0 +1,32 @@ +//crossported from the torch because apparently it's referenced +/mob/living/exosuit/premade/light/exploration + name = "exploration mech" + desc = "It looks a bit charred." + +/mob/living/exosuit/premade/light/exploration/Initialize() + if(!body) + body = new /obj/item/mech_component/chassis/pod(src) + body.color = COLOR_GUNMETAL + if(!legs) + legs = new /obj/item/mech_component/propulsion/tracks(src) + legs.color = COLOR_GUNMETAL + if(!arms) + arms = new /obj/item/mech_component/manipulators/powerloader(src) + arms.color = COLOR_PURPLE + + . = ..() + + //Damage it + var/list/parts = list(arms,legs,head,body) + var/obj/item/mech_component/damaged = pick(parts) + damaged.take_burn_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + if(prob(33)) + parts -= damaged + damaged = pick(parts) + damaged.take_burn_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + +/mob/living/exosuit/premade/light/exploration/spawn_mech_equipment() + install_system(new /obj/item/mech_equipment/light(src), HARDPOINT_HEAD) + install_system(new /obj/item/mech_equipment/clamp(src), HARDPOINT_RIGHT_HAND) + install_system(new /obj/item/mech_equipment/mounted_system/taser/plasma(src), HARDPOINT_LEFT_HAND) + install_system(new /obj/item/mech_equipment/ionjets(src), HARDPOINT_BACK) diff --git a/maps/exodus/items/stamps.dm b/maps/exodus/items/stamps.dm new file mode 100644 index 00000000000..df054261b58 --- /dev/null +++ b/maps/exodus/items/stamps.dm @@ -0,0 +1,4 @@ +/obj/item/stamp/hop + name = "Head of Personnel's rubber stamp" + icon_state = "stamp-xo" + //They probably just renamed it and deleted the HoP type from the basecode... diff --git a/maps/exodus/jobs/_goals.dm b/maps/exodus/jobs/_goals.dm new file mode 100644 index 00000000000..db00d121177 --- /dev/null +++ b/maps/exodus/jobs/_goals.dm @@ -0,0 +1,48 @@ +/datum/department/command + goals = list(/datum/goal/department/paperwork/exodus) + +GLOBAL_LIST_EMPTY(exodus_paperwork_spawn_turfs) +GLOBAL_LIST_EMPTY(exodus_paperwork_end_areas) + +/obj/effect/landmark/paperwork_spawn_exodus + name = "Exodus Paperwork Goal Spawn Point" + +/obj/effect/landmark/paperwork_spawn_exodus/Initialize() + ..() + var/turf/T = get_turf(src) + if(istype(T)) + GLOB.exodus_paperwork_spawn_turfs |= T + return INITIALIZE_HINT_QDEL + +/obj/effect/landmark/paperwork_finish_exodus + name = "Exodus Paperwork Goal Finish Point" + +/obj/effect/landmark/paperwork_finish_exodus/Initialize() + ..() + var/turf/T = get_turf(src) + if(istype(T)) + var/area/A = get_area(T) + if(istype(A)) + GLOB.exodus_paperwork_end_areas |= A + return INITIALIZE_HINT_QDEL + +/datum/goal/department/paperwork/exodus + paperwork_types = list(/obj/item/paperwork/exodus) + signatory_job_list = list( + /datum/job/captain, + /datum/job/hop, + /datum/job/cmo, + /datum/job/chief_engineer, + /datum/job/rd, + /datum/job/hos + ) + +/datum/goal/department/paperwork/exodus/get_spawn_turfs() + return GLOB.exodus_paperwork_spawn_turfs + +/datum/goal/department/paperwork/exodus/get_end_areas() + return GLOB.exodus_paperwork_end_areas + +/obj/item/paperwork/exodus + name = "\improper Exodus payroll paperwork" + desc = "A complex list of salaries, hours and tax withheld for Exodus workers this month." diff --git a/maps/exodus/jobs/captain.dm b/maps/exodus/jobs/captain.dm new file mode 100644 index 00000000000..024afbf8b55 --- /dev/null +++ b/maps/exodus/jobs/captain.dm @@ -0,0 +1,141 @@ +/datum/job/captain + title = "Captain" + head_position = 1 + department_flag = COM + + total_positions = 1 + spawn_positions = 1 + supervisors = "company officials and Corporate Regulations" + selection_color = "#1d1d4f" + req_admin_notify = 1 + access = list() //See get_access() + minimal_access = list() //See get_access() + minimal_player_age = 14 + economic_power = 20 + + ideal_character_age = 70 + outfit_type = /decl/hierarchy/outfit/job/captain + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_SCIENCE = SKILL_ADEPT, + SKILL_PILOT = SKILL_ADEPT + ) + max_skill = list( + SKILL_PILOT = SKILL_MAX, + SKILL_SCIENCE = SKILL_MAX + ) + skill_points = 30 + software_on_spawn = list( + /datum/computer_file/program/comm, + /datum/computer_file/program/card_mod, + /datum/computer_file/program/camera_monitor, + /datum/computer_file/program/reports + ) + +/datum/job/captain/equip(var/mob/living/carbon/human/H) + . = ..() + if(.) + H.implant_loyalty(src) + +/datum/job/captain/get_access() + return get_all_station_access() + +/datum/job/hop + title = "Head of Personnel" + head_position = 1 + department_flag = COM|CIV + + total_positions = 1 + spawn_positions = 1 + supervisors = "the captain" + selection_color = "#2f2f7f" + req_admin_notify = 1 + minimal_player_age = 14 + economic_power = 10 + ideal_character_age = 50 + + access = list( + access_security, + access_sec_doors, + access_brig, + access_forensics_lockers, + access_heads, + access_medical, + access_engine, + access_change_ids, + access_ai_upload, + access_eva, + access_bridge, + access_all_personal_lockers, + access_maint_tunnels, + access_bar, + access_janitor, + access_construction, + access_morgue, + access_crematorium, + access_kitchen, + access_cargo, + access_cargo_bot, + access_mailsorting, + access_qm, + access_hydroponics, + access_lawyer, + access_chapel_office, + access_library, + access_research, + access_mining, + access_heads_vault, + access_mining_station, + access_hop, + access_RC_announce, + access_keycard_auth, + access_gateway + ) + minimal_access = list( + access_security, + access_sec_doors, + access_brig, + access_forensics_lockers, + access_heads, + access_medical, + access_engine, + access_change_ids, + access_ai_upload, + access_eva, + access_bridge, + access_all_personal_lockers, + access_maint_tunnels, + access_bar, + access_janitor, + access_construction, + access_morgue, + access_crematorium, + access_kitchen, + access_cargo, + access_cargo_bot, + access_mailsorting, + access_qm, + access_hydroponics, + access_lawyer, + access_chapel_office, + access_library, + access_research, + access_mining, + access_heads_vault, + access_mining_station, + access_hop, + access_RC_announce, + access_keycard_auth, + access_gateway + ) + outfit_type = /decl/hierarchy/outfit/job/hop + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_BASIC, + SKILL_PILOT = SKILL_BASIC + ) + max_skill = list( + SKILL_PILOT = SKILL_MAX, + SKILL_SCIENCE = SKILL_MAX + ) + skill_points = 30 diff --git a/maps/exodus/jobs/civilian.dm b/maps/exodus/jobs/civilian.dm new file mode 100644 index 00000000000..503a61b2f97 --- /dev/null +++ b/maps/exodus/jobs/civilian.dm @@ -0,0 +1,302 @@ +/datum/job/chaplain + title = "Chaplain" + department_flag = CIV + total_positions = 1 + spawn_positions = 1 + supervisors = "the head of personnel" + access = list( + access_morgue, + access_chapel_office, + access_crematorium, + access_maint_tunnels + ) + minimal_access = list( + access_morgue, + access_chapel_office, + access_crematorium + ) + outfit_type = /decl/hierarchy/outfit/job/chaplain + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_FINANCE = SKILL_BASIC + ) + skill_points = 20 + software_on_spawn = list(/datum/computer_file/program/reports) + +//Food +/datum/job/bartender + title = "Bartender" + department_flag = SRV + total_positions = 1 + spawn_positions = 1 + supervisors = "the head of personnel" + access = list( + access_hydroponics, + access_bar, + access_kitchen + ) + minimal_access = list(access_bar) + alt_titles = list("Barista") + outfit_type = /decl/hierarchy/outfit/job/service/bartender + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COOKING = SKILL_BASIC, + SKILL_BOTANY = SKILL_BASIC, + SKILL_CHEMISTRY = SKILL_BASIC + ) + +/datum/job/chef + title = "Chef" + department_flag = SRV + total_positions = 2 + spawn_positions = 2 + supervisors = "the head of personnel" + access = list( + access_hydroponics, + access_bar, + access_kitchen + ) + minimal_access = list(access_kitchen) + alt_titles = list("Cook") + outfit_type = /decl/hierarchy/outfit/job/service/chef + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COOKING = SKILL_ADEPT, + SKILL_BOTANY = SKILL_BASIC, + SKILL_CHEMISTRY = SKILL_BASIC + ) + +/datum/job/hydro + title = "Gardener" + department_flag = SRV + total_positions = 2 + spawn_positions = 1 + supervisors = "the head of personnel" + access = list( + access_hydroponics, + access_bar, + access_kitchen + ) + minimal_access = list(access_hydroponics) + alt_titles = list("Hydroponicist") + outfit_type = /decl/hierarchy/outfit/job/service/gardener + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_BOTANY = SKILL_BASIC, + SKILL_CHEMISTRY = SKILL_BASIC + ) + +//Cargo +/datum/job/qm + title = "Quartermaster" + department_flag = SUP + total_positions = 1 + spawn_positions = 1 + supervisors = "the head of personnel" + economic_power = 5 + access = list( + access_maint_tunnels, + access_mailsorting, + access_cargo, + access_cargo_bot, + access_qm, + access_mining, + access_mining_station + ) + minimal_access = list( + access_maint_tunnels, + access_mailsorting, + access_cargo, + access_cargo_bot, + access_qm, + access_mining, + access_mining_station + ) + minimal_player_age = 3 + ideal_character_age = 40 + outfit_type = /decl/hierarchy/outfit/job/cargo/qm + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_FINANCE = SKILL_BASIC, + SKILL_HAULING = SKILL_BASIC, + SKILL_EVA = SKILL_BASIC, + SKILL_PILOT = SKILL_BASIC + ) + max_skill = list( + SKILL_PILOT = SKILL_MAX + ) + skill_points = 18 + software_on_spawn = list( + /datum/computer_file/program/supply, + /datum/computer_file/program/deck_management, + /datum/computer_file/program/reports + ) + +/datum/job/cargo_tech + title = "Cargo Technician" + department_flag = SUP + total_positions = 2 + spawn_positions = 2 + supervisors = "the quartermaster and the head of personnel" + access = list( + access_maint_tunnels, + access_mailsorting, + access_cargo, + access_cargo_bot, + access_qm, + access_mining, + access_mining_station + ) + minimal_access = list( + access_maint_tunnels, + access_cargo, + access_cargo_bot, + access_mailsorting + ) + outfit_type = /decl/hierarchy/outfit/job/cargo/cargo_tech + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_FINANCE = SKILL_BASIC, + SKILL_HAULING = SKILL_BASIC + ) + max_skill = list( + SKILL_PILOT = SKILL_MAX + ) + software_on_spawn = list( + /datum/computer_file/program/supply, + /datum/computer_file/program/deck_management, + /datum/computer_file/program/reports + ) + +/datum/job/mining + title = "Shaft Miner" + department_flag = SUP + total_positions = 3 + spawn_positions = 3 + supervisors = "the quartermaster and the head of personnel" + economic_power = 5 + access = list( + access_maint_tunnels, + access_mailsorting, + access_cargo, + access_cargo_bot, + access_qm, + access_mining, + access_mining_station + ) + minimal_access = list( + access_mining, + access_mining_station, + access_mailsorting + ) + alt_titles = list( + "Drill Technician", + "Prospector" + ) + outfit_type = /decl/hierarchy/outfit/job/cargo/mining + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_HAULING = SKILL_ADEPT, + SKILL_EVA = SKILL_BASIC + ) + max_skill = list( + SKILL_PILOT = SKILL_MAX + ) + +/datum/job/janitor + title = "Janitor" + department_flag = SRV + total_positions = 1 + spawn_positions = 1 + supervisors = "the head of personnel" + access = list( + access_janitor, + access_maint_tunnels, + access_engine, + access_research, + access_sec_doors, + access_medical + ) + minimal_access = list( + access_janitor, + access_maint_tunnels, + access_engine, + access_research, + access_sec_doors, + access_medical + ) + alt_titles = list( + "Custodian", + "Sanitation Technician" + ) + outfit_type = /decl/hierarchy/outfit/job/service/janitor + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_HAULING = SKILL_BASIC + ) + +//More or less assistants +/datum/job/librarian + title = "Librarian" + department_flag = CIV + total_positions = 1 + spawn_positions = 1 + supervisors = "the head of personnel" + access = list( + access_library, + access_maint_tunnels + ) + minimal_access = list(access_library) + alt_titles = list("Journalist") + outfit_type = /decl/hierarchy/outfit/job/librarian + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_FINANCE = SKILL_BASIC + ) + skill_points = 20 + software_on_spawn = list(/datum/computer_file/program/reports) + +/datum/job/lawyer + title = "Internal Affairs Agent" + department_flag = SPT + total_positions = 2 + spawn_positions = 2 + supervisors = "company officials and Corporate Regulations" + economic_power = 7 + access = list( + access_lawyer, + access_sec_doors, + access_maint_tunnels, + access_bridge + ) + minimal_access = list( + access_lawyer, + access_sec_doors, + access_bridge + ) + minimal_player_age = 10 + outfit_type = /decl/hierarchy/outfit/job/internal_affairs_agent + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_FINANCE = SKILL_BASIC + ) + skill_points = 20 + software_on_spawn = list(/datum/computer_file/program/reports) + +/datum/job/lawyer/equip(var/mob/living/carbon/human/H) + . = ..() + if(.) + H.implant_loyalty(H) + +/obj/item/card/id/cargo + name = "identification card" + desc = "A card issued to cargo staff." + detail_color = COLOR_BROWN + +/obj/item/card/id/cargo/head + name = "identification card" + desc = "A card which represents service and planning." + extra_details = list("goldstripe") + +/obj/item/card/id/civilian/internal_affairs_agent + detail_color = COLOR_NAVY_BLUE diff --git a/maps/exodus/jobs/engineering.dm b/maps/exodus/jobs/engineering.dm new file mode 100644 index 00000000000..a27180405ec --- /dev/null +++ b/maps/exodus/jobs/engineering.dm @@ -0,0 +1,163 @@ +/datum/job/chief_engineer + title = "Chief Engineer" + head_position = 1 + department_flag = ENG|COM + + total_positions = 1 + spawn_positions = 1 + supervisors = "the captain" + selection_color = "#7f6e2c" + req_admin_notify = 1 + economic_power = 10 + + ideal_character_age = 50 + + + + access = list( + access_engine, + access_engine_equip, + access_tech_storage, + access_maint_tunnels, + access_heads, + access_teleporter, + access_external_airlocks, + access_atmospherics, + access_emergency_storage, + access_eva, + access_bridge, + access_construction, + access_sec_doors, + access_ce, + access_RC_announce, + access_keycard_auth, + access_tcomsat, + access_ai_upload, + access_network + ) + minimal_access = list( + access_engine, + access_engine_equip, + access_tech_storage, + access_maint_tunnels, + access_heads, + access_teleporter, + access_external_airlocks, + access_atmospherics, + access_emergency_storage, + access_eva, + access_bridge, + access_construction, + access_sec_doors, + access_ce, + access_RC_announce, + access_keycard_auth, + access_tcomsat, + access_ai_upload, + access_network + ) + minimal_player_age = 14 + outfit_type = /decl/hierarchy/outfit/job/engineering/chief_engineer + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_ADEPT, + SKILL_EVA = SKILL_ADEPT, + SKILL_CONSTRUCTION = SKILL_ADEPT, + SKILL_ELECTRICAL = SKILL_ADEPT, + SKILL_ATMOS = SKILL_ADEPT, + SKILL_ENGINES = SKILL_EXPERT + ) + + max_skill = list( + SKILL_CONSTRUCTION = SKILL_MAX, + SKILL_ELECTRICAL = SKILL_MAX, + SKILL_ATMOS = SKILL_MAX, + SKILL_ENGINES = SKILL_MAX + ) + skill_points = 30 + software_on_spawn = list( + /datum/computer_file/program/comm, + /datum/computer_file/program/power_monitor, + /datum/computer_file/program/supermatter_monitor, + /datum/computer_file/program/alarm_monitor, + /datum/computer_file/program/atmos_control, + /datum/computer_file/program/rcon_console, + /datum/computer_file/program/camera_monitor, + /datum/computer_file/program/shields_monitor, + /datum/computer_file/program/reports + ) + +/datum/job/engineer + title = "Engineer" + department_flag = ENG + + total_positions = 8 + spawn_positions = 7 + supervisors = "the chief engineer" + selection_color = "#5b4d20" + economic_power = 5 + minimal_player_age = 7 + access = list( + access_eva, + access_engine, + access_engine_equip, + access_tech_storage, + access_maint_tunnels, + access_external_airlocks, + access_construction, + access_atmospherics, + access_emergency_storage + ) + minimal_access = list( + access_eva, + access_engine, + access_engine_equip, + access_tech_storage, + access_maint_tunnels, + access_external_airlocks, + access_construction, + access_atmospherics, + access_emergency_storage + ) + alt_titles = list( + "Maintenance Technician", + "Engine Technician", + "Electrician", + "Atmospheric Technician" = /decl/hierarchy/outfit/job/engineering/atmos + ) + outfit_type = /decl/hierarchy/outfit/job/engineering/engineer + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_BASIC, + SKILL_EVA = SKILL_BASIC, + SKILL_CONSTRUCTION = SKILL_ADEPT, + SKILL_ELECTRICAL = SKILL_BASIC, + SKILL_ATMOS = SKILL_BASIC, + SKILL_ENGINES = SKILL_BASIC + ) + max_skill = list( + SKILL_CONSTRUCTION = SKILL_MAX, + SKILL_ELECTRICAL = SKILL_MAX, + SKILL_ATMOS = SKILL_MAX, + SKILL_ENGINES = SKILL_MAX + ) + skill_points = 20 + software_on_spawn = list( + /datum/computer_file/program/power_monitor, + /datum/computer_file/program/supermatter_monitor, + /datum/computer_file/program/alarm_monitor, + /datum/computer_file/program/atmos_control, + /datum/computer_file/program/rcon_console, + /datum/computer_file/program/camera_monitor, + /datum/computer_file/program/shields_monitor + ) + +/obj/item/card/id/engineering + name = "identification card" + desc = "A card issued to engineering staff." + detail_color = COLOR_SUN + +/obj/item/card/id/engineering/head + name = "identification card" + desc = "A card which represents creativity and ingenuity." + extra_details = list("goldstripe") diff --git a/maps/exodus/jobs/medical.dm b/maps/exodus/jobs/medical.dm new file mode 100644 index 00000000000..3b5ddd4564e --- /dev/null +++ b/maps/exodus/jobs/medical.dm @@ -0,0 +1,219 @@ +/datum/job/cmo + title = "Chief Medical Officer" + head_position = 1 + department_flag = MED|COM + + total_positions = 1 + spawn_positions = 1 + supervisors = "the captain" + selection_color = "#026865" + req_admin_notify = 1 + economic_power = 10 + access = list( + access_medical, + access_medical_equip, + access_morgue, + access_bridge, + access_heads, + access_chemistry, + access_virology, + access_cmo, + access_surgery, + access_RC_announce, + access_keycard_auth, + access_sec_doors, + access_psychiatrist, + access_eva, + access_maint_tunnels, + access_external_airlocks + ) + minimal_access = list( + access_medical, + access_medical_equip, + access_morgue, + access_bridge, + access_heads, + access_chemistry, + access_virology, + access_cmo, + access_surgery, + access_RC_announce, + access_keycard_auth, + access_sec_doors, + access_psychiatrist, + access_eva, + access_maint_tunnels, + access_external_airlocks + ) + minimal_player_age = 14 + outfit_type = /decl/hierarchy/outfit/job/medical/cmo + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_MEDICAL = SKILL_EXPERT, + SKILL_ANATOMY = SKILL_EXPERT, + SKILL_CHEMISTRY = SKILL_BASIC + ) + max_skill = list( + SKILL_MEDICAL = SKILL_MAX, + SKILL_ANATOMY = SKILL_MAX, + SKILL_CHEMISTRY = SKILL_MAX + ) + skill_points = 26 + software_on_spawn = list( + /datum/computer_file/program/comm, + /datum/computer_file/program/suit_sensors, + /datum/computer_file/program/camera_monitor, + /datum/computer_file/program/reports + ) + +/datum/job/doctor + title = "Medical Doctor" + department_flag = MED + + minimal_player_age = 3 + total_positions = 5 + spawn_positions = 3 + supervisors = "the chief medical officer" + selection_color = "#013d3b" + economic_power = 7 + access = list( + access_medical, + access_medical_equip, + access_morgue, + access_surgery, + access_chemistry, + access_virology, + access_eva, + access_maint_tunnels, + access_external_airlocks, + access_psychiatrist + ) + minimal_access = list( + access_medical, + access_medical_equip, + access_morgue, + access_eva, + access_maint_tunnels, + access_external_airlocks + ) + alt_titles = list( + "Surgeon" = /decl/hierarchy/outfit/job/medical/doctor/surgeon, + "Emergency Physician" = /decl/hierarchy/outfit/job/medical/doctor/emergency_physician, + "Nurse" = /decl/hierarchy/outfit/job/medical/doctor/nurse, + "Virologist" = /decl/hierarchy/outfit/job/medical/doctor/virologist, + //Just gonna put these here. Might move them later. + "Paramedic" = /decl/hierarchy/outfit/job/medical/paramedic, + "Emergency Medical Technician" = /decl/hierarchy/outfit/job/medical/paramedic/emt + ) + outfit_type = /decl/hierarchy/outfit/job/medical/doctor + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_EVA = SKILL_BASIC, + SKILL_MEDICAL = SKILL_BASIC, + SKILL_ANATOMY = SKILL_BASIC + ) + max_skill = list( + SKILL_ANATOMY = SKILL_MAX, + SKILL_MEDICAL = SKILL_MAX, + SKILL_CHEMISTRY = SKILL_MAX + ) + software_on_spawn = list( + /datum/computer_file/program/suit_sensors, + /datum/computer_file/program/camera_monitor + ) + skill_points = 22 + +// We don't have actual parameds to cut down on job bloat. Might enable them in the future, for now just stub their card. +/obj/item/card/id/medical/paramedic + job_access_type = /datum/job/doctor + +/datum/job/chemist + title = "Pharmacist" + department_flag = MED + minimal_player_age = 7 + total_positions = 2 + spawn_positions = 2 + supervisors = "the chief medical officer" + selection_color = "#013d3b" + economic_power = 5 + access = list( + access_medical, + access_medical_equip, + access_morgue, + access_surgery, + access_chemistry, + access_virology + ) + minimal_access = list( + access_medical, + access_medical_equip, + access_chemistry + ) + outfit_type = /decl/hierarchy/outfit/job/medical/chemist + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_MEDICAL = SKILL_ADEPT, + SKILL_CHEMISTRY = SKILL_ADEPT + ) + max_skill = list( + SKILL_MEDICAL = SKILL_ADEPT, + SKILL_ANATOMY = SKILL_ADEPT, + SKILL_CHEMISTRY = SKILL_MAX + ) + skill_points = 16 + +/datum/job/counselor + title = "Counselor" + alt_titles = list("Mentalist") + department_flag = MED + total_positions = 1 + spawn_positions = 1 + economic_power = 5 + minimal_player_age = 3 + supervisors = "the chief medical officer" + selection_color = "#013d3b" + access = list( + access_medical, + access_medical_equip, + access_morgue, + access_surgery, + access_chemistry, + access_virology, + access_psychiatrist + ) + minimal_access = list( + access_medical, + access_medical_equip, + access_psychiatrist + ) + outfit_type = /decl/hierarchy/outfit/job/medical/psychiatrist + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_MEDICAL = SKILL_BASIC + ) + max_skill = list( + SKILL_MEDICAL = SKILL_MAX + ) + software_on_spawn = list( + /datum/computer_file/program/suit_sensors, + /datum/computer_file/program/camera_monitor + ) + give_psionic_implant_on_join = FALSE + +/datum/job/counselor/equip(var/mob/living/carbon/human/H) + if(H.mind.role_alt_title == "Counselor") + psi_faculties = list("[PSI_REDACTION]" = PSI_RANK_OPERANT) + if(H.mind.role_alt_title == "Mentalist") + psi_faculties = list("[PSI_COERCION]" = PSI_RANK_OPERANT) + return ..() + +// Department-flavor IDs +/obj/item/card/id/medical + name = "identification card" + desc = "A card issued to medical staff." + detail_color = COLOR_PALE_BLUE_GRAY + +/obj/item/card/id/medical/head + name = "identification card" + desc = "A card which represents care and compassion." + extra_details = list("goldstripe") diff --git a/maps/exodus/jobs/science.dm b/maps/exodus/jobs/science.dm new file mode 100644 index 00000000000..b89e87da30f --- /dev/null +++ b/maps/exodus/jobs/science.dm @@ -0,0 +1,178 @@ +/datum/job/rd + title = "Chief Science Officer" + head_position = 1 + department_flag = COM|SCI + + total_positions = 1 + spawn_positions = 1 + supervisors = "the captain" + selection_color = "#ad6bad" + req_admin_notify = 1 + economic_power = 15 + access = list( + access_rd, + access_bridge, + access_tox, + access_morgue, + access_tox_storage, + access_teleporter, + access_sec_doors, + access_heads, + access_research, + access_robotics, + access_xenobiology, + access_ai_upload, + access_tech_storage, + access_RC_announce, + access_keycard_auth, + access_tcomsat, + access_gateway, + access_xenoarch, + access_network, + access_network_admin + ) + minimal_access = list(access_rd, + access_bridge, + access_tox, + access_morgue, + access_tox_storage, + access_teleporter, + access_sec_doors, + access_heads, + access_research, + access_robotics, + access_xenobiology, + access_ai_upload, + access_tech_storage, + access_RC_announce, + access_keycard_auth, + access_tcomsat, + access_gateway, + access_xenoarch, + access_network, + access_network_admin + ) + minimal_player_age = 14 + ideal_character_age = 50 + + outfit_type = /decl/hierarchy/outfit/job/science/rd + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_BASIC, + SKILL_FINANCE = SKILL_ADEPT, + SKILL_BOTANY = SKILL_BASIC, + SKILL_ANATOMY = SKILL_BASIC, + SKILL_DEVICES = SKILL_BASIC, + SKILL_SCIENCE = SKILL_ADEPT) + max_skill = list( + SKILL_ANATOMY = SKILL_MAX, + SKILL_DEVICES = SKILL_MAX, + SKILL_SCIENCE = SKILL_MAX + ) + skill_points = 30 + +/datum/job/scientist + title = "Scientist" + department_flag = SCI + total_positions = 6 + spawn_positions = 4 + supervisors = "the Chief Science Officer" + selection_color = "#633d63" + economic_power = 7 + access = list( + access_robotics, + access_tox, + access_tox_storage, + access_research, + access_xenobiology, + access_xenoarch, + access_hydroponics + ) + minimal_access = list( + access_tox, + access_tox_storage, + access_research, + access_xenoarch, + access_xenobiology, + access_hydroponics + ) + alt_titles = list(//Bay has outfits for the first two. Might as well put them there. + "Xenobiologist" = /decl/hierarchy/outfit/job/science/xenobiologist, + "Xenobotanist" = /decl/hierarchy/outfit/job/science/xenobiologist, + "Xenoarcheologist", + "Anomalist", + "Phoron Researcher" + ) + minimal_player_age = 7 + outfit_type = /decl/hierarchy/outfit/job/science/scientist + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_BASIC, + SKILL_DEVICES = SKILL_BASIC, + SKILL_SCIENCE = SKILL_ADEPT + ) + max_skill = list( + SKILL_ANATOMY = SKILL_MAX, + SKILL_DEVICES = SKILL_MAX, + SKILL_SCIENCE = SKILL_MAX + ) + skill_points = 20 + +/decl/hierarchy/outfit/job/science/xenobiologist + id_types = list(/obj/item/card/id/science) + +/datum/job/roboticist + title = "Roboticist" + department_flag = SCI + total_positions = 2 + spawn_positions = 2 + supervisors = "the Chief Science Officer" + selection_color = "#633d63" + economic_power = 5 + access = list( + access_robotics, + access_tox, + access_tox_storage, + access_tech_storage, + access_morgue, + access_research + ) + minimal_access = list( + access_robotics, + access_tech_storage, + access_morgue, + access_research + ) + alt_titles = list( + "Biomechanical Engineer", + "Mechatronic Engineer") + minimal_player_age = 3 + outfit_type = /decl/hierarchy/outfit/job/science/roboticist + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_ADEPT, + SKILL_DEVICES = SKILL_ADEPT, + SKILL_EVA = SKILL_ADEPT, + SKILL_ANATOMY = SKILL_ADEPT, + SKILL_MECH = HAS_PERK + ) + max_skill = list( + SKILL_CONSTRUCTION = SKILL_MAX, + SKILL_ELECTRICAL = SKILL_MAX, + SKILL_ATMOS = SKILL_EXPERT, + SKILL_ENGINES = SKILL_EXPERT, + SKILL_DEVICES = SKILL_MAX, + SKILL_MEDICAL = SKILL_EXPERT, + SKILL_ANATOMY = SKILL_EXPERT + ) + skill_points = 20 + +/obj/item/card/id/science + name = "identification card" + desc = "A card issued to science staff." + detail_color = COLOR_PALE_PURPLE_GRAY + +/obj/item/card/id/science/head + name = "identification card" + desc = "A card which represents knowledge and reasoning." + extra_details = list("goldstripe") diff --git a/maps/exodus/jobs/security.dm b/maps/exodus/jobs/security.dm new file mode 100644 index 00000000000..f227da875e8 --- /dev/null +++ b/maps/exodus/jobs/security.dm @@ -0,0 +1,235 @@ +/datum/job/hos + title = "Head of Security" + head_position = 1 + department_flag = SEC|COM + total_positions = 1 + spawn_positions = 1 + supervisors = "the captain" + selection_color = "#8e2929" + req_admin_notify = 1 + economic_power = 10 + access = list( + access_security, + access_eva, + access_sec_doors, + access_brig, + access_armory, + access_heads, + access_forensics_lockers, + access_morgue, + access_maint_tunnels, + access_all_personal_lockers, + access_research, + access_engine, + access_mining, + access_medical, + access_construction, + access_mailsorting, + access_bridge, + 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_heads, + access_forensics_lockers, + access_morgue, + access_maint_tunnels, + access_all_personal_lockers, + access_research, + access_engine, + access_mining, + access_medical, + access_construction, + access_mailsorting, + access_bridge, + access_hos, + access_RC_announce, + access_keycard_auth, + access_gateway, + access_external_airlocks + ) + minimal_player_age = 14 + + outfit_type = /decl/hierarchy/outfit/job/security/hos + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_EVA = SKILL_BASIC, + SKILL_COMBAT = SKILL_BASIC, + SKILL_WEAPONS = SKILL_ADEPT, + SKILL_FORENSICS = SKILL_BASIC + ) + max_skill = list( + SKILL_COMBAT = SKILL_MAX, + SKILL_WEAPONS = SKILL_MAX, + SKILL_FORENSICS = SKILL_MAX + ) + skill_points = 28 + software_on_spawn = list( + /datum/computer_file/program/comm, + /datum/computer_file/program/digitalwarrant, + /datum/computer_file/program/camera_monitor, + /datum/computer_file/program/reports + ) + +/datum/job/hos/equip(var/mob/living/carbon/human/H) + . = ..() + if(.) + H.implant_loyalty(H) + +/datum/job/warden + title = "Warden" + department_flag = SEC + total_positions = 1 + spawn_positions = 1 + supervisors = "the head of security" + selection_color = "#601c1c" + economic_power = 5 + access = list( + access_security, + access_eva, + access_sec_doors, + access_brig, + access_armory, + access_maint_tunnels, + access_morgue, + access_external_airlocks + ) + minimal_access = list( + access_security, + access_eva, + access_sec_doors, + access_brig, + access_armory, + access_maint_tunnels, + access_external_airlocks + ) + minimal_player_age = 7 + outfit_type = /decl/hierarchy/outfit/job/security/warden + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_EVA = SKILL_BASIC, + SKILL_COMBAT = SKILL_BASIC, + SKILL_WEAPONS = SKILL_ADEPT, + SKILL_FORENSICS = SKILL_BASIC + ) + max_skill = list( + SKILL_COMBAT = SKILL_MAX, + SKILL_WEAPONS = SKILL_MAX, + SKILL_FORENSICS = SKILL_MAX + ) + skill_points = 20 + software_on_spawn = list( + /datum/computer_file/program/digitalwarrant, + /datum/computer_file/program/camera_monitor + ) + +/datum/job/detective + title = "Detective" + department_flag = SEC + + total_positions = 2 + spawn_positions = 2 + supervisors = "the head of security" + selection_color = "#601c1c" + alt_titles = list( + "Forensic Technician" = /decl/hierarchy/outfit/job/security/detective/forensic + ) + economic_power = 5 + access = list( + access_security, + access_sec_doors, + access_forensics_lockers, + access_morgue, + access_maint_tunnels + ) + minimal_access = list( + access_security, + access_sec_doors, + access_forensics_lockers, + access_morgue, + access_maint_tunnels + ) + minimal_player_age = 7 + outfit_type = /decl/hierarchy/outfit/job/security/detective + min_skill = list( + SKILL_LITERACY = SKILL_ADEPT, + SKILL_COMPUTER = SKILL_BASIC, + SKILL_EVA = SKILL_BASIC, + SKILL_COMBAT = SKILL_BASIC, + SKILL_WEAPONS = SKILL_BASIC, + SKILL_FORENSICS = SKILL_ADEPT + ) + max_skill = list( + SKILL_COMBAT = SKILL_MAX, + SKILL_WEAPONS = SKILL_MAX, + SKILL_FORENSICS = SKILL_MAX + ) + skill_points = 20 + software_on_spawn = list( + /datum/computer_file/program/digitalwarrant, + /datum/computer_file/program/camera_monitor + ) + +/datum/job/officer + title = "Security Officer" + department_flag = SEC + total_positions = 4 + spawn_positions = 4 + supervisors = "the head of security" + selection_color = "#601c1c" + alt_titles = list("Junior Officer") + economic_power = 4 + access = list( + access_security, + access_eva, + access_sec_doors, + access_brig, + access_maint_tunnels, + access_morgue, + access_external_airlocks + ) + minimal_access = list( + access_security, + access_eva, + access_sec_doors, + access_brig, + access_maint_tunnels, + access_external_airlocks + ) + minimal_player_age = 7 + outfit_type = /decl/hierarchy/outfit/job/security/officer + min_skill = list( + SKILL_LITERACY = SKILL_BASIC, + SKILL_EVA = SKILL_BASIC, + SKILL_COMBAT = SKILL_BASIC, + SKILL_WEAPONS = SKILL_ADEPT, + SKILL_FORENSICS = SKILL_BASIC + ) + max_skill = list( + SKILL_COMBAT = SKILL_MAX, + SKILL_WEAPONS = SKILL_MAX, + SKILL_FORENSICS = SKILL_MAX + ) + software_on_spawn = list( + /datum/computer_file/program/digitalwarrant, + /datum/computer_file/program/camera_monitor + ) + +/obj/item/card/id/security + name = "identification card" + desc = "A card issued to security staff." + color = COLOR_OFF_WHITE + detail_color = COLOR_MAROON + +/obj/item/card/id/security/head + name = "identification card" + desc = "A card which represents honor and protection." + extra_details = list("goldstripe") diff --git a/maps/exodus/lobby/exodus.png b/maps/exodus/lobby/exodus.png new file mode 100644 index 00000000000..c4181f9e39b Binary files /dev/null and b/maps/exodus/lobby/exodus.png differ diff --git a/maps/exodus/outfits/_pda.dm b/maps/exodus/outfits/_pda.dm new file mode 100644 index 00000000000..7631251ebf3 --- /dev/null +++ b/maps/exodus/outfits/_pda.dm @@ -0,0 +1,2 @@ +/obj/item/modular_computer/pda/heads/paperpusher + stored_pen = /obj/item/pen/fancy diff --git a/maps/exodus/outfits/cargo.dm b/maps/exodus/outfits/cargo.dm new file mode 100644 index 00000000000..708ca75dfe4 --- /dev/null +++ b/maps/exodus/outfits/cargo.dm @@ -0,0 +1,35 @@ +/decl/hierarchy/outfit/job/cargo + l_ear = /obj/item/radio/headset/headset_cargo + hierarchy_type = /decl/hierarchy/outfit/job/cargo + +/decl/hierarchy/outfit/job/cargo/qm + name = OUTFIT_JOB_NAME("Cargo") + uniform = /obj/item/clothing/under/cargo + shoes = /obj/item/clothing/shoes/color/brown + glasses = /obj/item/clothing/glasses/sunglasses + hands = list(/obj/item/clipboard) + id_type = /obj/item/card/id/cargo/head + pda_type = /obj/item/modular_computer/pda/cargo + +/obj/item/card/id/cargo/head + name = "identification card" + desc = "A card which represents service and planning." + extra_details = list("goldstripe") + +/decl/hierarchy/outfit/job/cargo/cargo_tech + name = OUTFIT_JOB_NAME("Cargo technician") + uniform = /obj/item/clothing/under/cargotech + id_type = /obj/item/card/id/cargo + pda_type = /obj/item/modular_computer/pda/cargo + +/decl/hierarchy/outfit/job/cargo/mining + name = OUTFIT_JOB_NAME("Shaft miner") + uniform = /obj/item/clothing/under/miner + id_type = /obj/item/card/id/cargo + pda_type = /obj/item/modular_computer/pda/science + backpack_contents = list(/obj/item/crowbar = 1, /obj/item/storage/ore = 1) + flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL + +/decl/hierarchy/outfit/job/cargo/mining/New() + ..() + BACKPACK_OVERRIDE_ENGINEERING diff --git a/maps/exodus/outfits/civilian.dm b/maps/exodus/outfits/civilian.dm new file mode 100644 index 00000000000..795e0547db1 --- /dev/null +++ b/maps/exodus/outfits/civilian.dm @@ -0,0 +1,62 @@ +/decl/hierarchy/outfit/job/service + l_ear = /obj/item/radio/headset/headset_service + hierarchy_type = /decl/hierarchy/outfit/job/service + +/decl/hierarchy/outfit/job/service/bartender + name = OUTFIT_JOB_NAME("Bartender") + uniform = /obj/item/clothing/under/bartender + id_type = /obj/item/card/id/civilian + pda_type = /obj/item/modular_computer/pda + +/decl/hierarchy/outfit/job/service/chef + name = OUTFIT_JOB_NAME("Chef") + uniform = /obj/item/clothing/under/chef + suit = /obj/item/clothing/suit/chef + head = /obj/item/clothing/head/chefhat + id_type = /obj/item/card/id/civilian + pda_type = /obj/item/modular_computer/pda + +/decl/hierarchy/outfit/job/service/gardener + name = OUTFIT_JOB_NAME("Gardener") + uniform = /obj/item/clothing/under/hydroponics + suit = /obj/item/clothing/suit/apron + gloves = /obj/item/clothing/gloves/thick/botany + r_pocket = /obj/item/scanner/plant + id_type = /obj/item/card/id/civilian + pda_type = /obj/item/modular_computer/pda + +/decl/hierarchy/outfit/job/service/gardener/New() + ..() + backpack_overrides[/decl/backpack_outfit/backpack] = /obj/item/storage/backpack/hydroponics + backpack_overrides[/decl/backpack_outfit/satchel] = /obj/item/storage/backpack/satchel/hyd + backpack_overrides[/decl/backpack_outfit/messenger_bag] = /obj/item/storage/backpack/messenger/hyd + +/decl/hierarchy/outfit/job/service/janitor + name = OUTFIT_JOB_NAME("Janitor") + uniform = /obj/item/clothing/under/janitor + id_type = /obj/item/card/id/civilian + pda_type = /obj/item/modular_computer/pda + +/decl/hierarchy/outfit/job/librarian + name = OUTFIT_JOB_NAME("Librarian") + uniform = /obj/item/clothing/under/suit_jacket/red + id_type = /obj/item/card/id/civilian + pda_type = /obj/item/modular_computer/pda + +/decl/hierarchy/outfit/job/internal_affairs_agent + name = OUTFIT_JOB_NAME("Internal affairs agent") + l_ear = /obj/item/radio/headset/ia + uniform = /obj/item/clothing/under/internalaffairs + suit = /obj/item/clothing/suit/storage/toggle/suit/black + shoes = /obj/item/clothing/shoes/color/brown + glasses = /obj/item/clothing/glasses/sunglasses/big + hands = list(/obj/item/storage/briefcase) + id_type = /obj/item/card/id/civilian/internal_affairs_agent + pda_type = /obj/item/modular_computer/pda/heads/paperpusher + +/decl/hierarchy/outfit/job/chaplain + name = OUTFIT_JOB_NAME("Chaplain") + uniform = /obj/item/clothing/under/chaplain + hands = list(/obj/item/storage/bible) + id_type = /obj/item/card/id/civilian + pda_type = /obj/item/modular_computer/pda/medical diff --git a/maps/exodus/outfits/command.dm b/maps/exodus/outfits/command.dm new file mode 100644 index 00000000000..6e39bbaa567 --- /dev/null +++ b/maps/exodus/outfits/command.dm @@ -0,0 +1,38 @@ +/decl/hierarchy/outfit/job/captain + name = OUTFIT_JOB_NAME("Captain") + head = /obj/item/clothing/head/caphat + glasses = /obj/item/clothing/glasses/sunglasses + uniform = /obj/item/clothing/under/captain + l_ear = /obj/item/radio/headset/heads/captain + shoes = /obj/item/clothing/shoes/color/brown + id_type = /obj/item/card/id/gold + pda_type = /obj/item/modular_computer/pda/heads/captain + backpack_contents = list(/obj/item/storage/box/ids = 1) + +/decl/hierarchy/outfit/job/captain/New() + ..() + backpack_overrides[/decl/backpack_outfit/backpack] = /obj/item/storage/backpack/captain + backpack_overrides[/decl/backpack_outfit/satchel] = /obj/item/storage/backpack/satchel/cap + backpack_overrides[/decl/backpack_outfit/messenger_bag] = /obj/item/storage/backpack/messenger/com + +/decl/hierarchy/outfit/job/captain/post_equip(var/mob/living/carbon/human/H) + ..() + if(H.get_age() > 49) + // Since we can have something other than the default uniform at this + // point, check if we can actually attach the medal + var/obj/item/clothing/uniform = H.w_uniform + if(uniform) + var/obj/item/clothing/accessory/medal/gold/medal = new() + if(uniform.can_attach_accessory(medal)) + uniform.attach_accessory(null, medal) + else + qdel(medal) + +/decl/hierarchy/outfit/job/hop + name = OUTFIT_JOB_NAME("Head of Personnel") + uniform = /obj/item/clothing/under/head_of_personnel + l_ear = /obj/item/radio/headset/heads/hop + shoes = /obj/item/clothing/shoes/color/brown + id_type = /obj/item/card/id/silver + pda_type = /obj/item/modular_computer/pda/heads/hop + backpack_contents = list(/obj/item/storage/box/ids = 1) diff --git a/maps/exodus/outfits/engineering.dm b/maps/exodus/outfits/engineering.dm new file mode 100644 index 00000000000..0cbdfba891c --- /dev/null +++ b/maps/exodus/outfits/engineering.dm @@ -0,0 +1,34 @@ +/decl/hierarchy/outfit/job/engineering + hierarchy_type = /decl/hierarchy/outfit/job/engineering + belt = /obj/item/storage/belt/utility/full + l_ear = /obj/item/radio/headset/headset_eng + shoes = /obj/item/clothing/shoes/workboots + pda_slot = slot_l_store_str + flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL + +/decl/hierarchy/outfit/job/engineering/New() + ..() + BACKPACK_OVERRIDE_ENGINEERING + +/decl/hierarchy/outfit/job/engineering/chief_engineer + name = OUTFIT_JOB_NAME("Chief Engineer") + head = /obj/item/clothing/head/hardhat/white + uniform = /obj/item/clothing/under/chief_engineer + l_ear = /obj/item/radio/headset/heads/ce + gloves = /obj/item/clothing/gloves/thick + id_type = /obj/item/card/id/engineering/head + pda_type = /obj/item/modular_computer/pda/heads/ce + +/decl/hierarchy/outfit/job/engineering/engineer + name = OUTFIT_JOB_NAME("Engineer") + head = /obj/item/clothing/head/hardhat + uniform = /obj/item/clothing/under/engineer + r_pocket = /obj/item/t_scanner + id_type = /obj/item/card/id/engineering + pda_type = /obj/item/modular_computer/pda/engineering + +/decl/hierarchy/outfit/job/engineering/atmos + name = OUTFIT_JOB_NAME("Atmospheric technician") + uniform = /obj/item/clothing/under/atmospheric_technician + belt = /obj/item/storage/belt/utility/atmostech + pda_type = /obj/item/modular_computer/pda/engineering diff --git a/maps/exodus/outfits/medical.dm b/maps/exodus/outfits/medical.dm new file mode 100644 index 00000000000..6a931233a53 --- /dev/null +++ b/maps/exodus/outfits/medical.dm @@ -0,0 +1,82 @@ +/decl/hierarchy/outfit/job/medical + hierarchy_type = /decl/hierarchy/outfit/job/medical + l_ear = /obj/item/radio/headset/headset_med + shoes = /obj/item/clothing/shoes/color/white + pda_type = /obj/item/modular_computer/pda/medical + pda_slot = slot_l_store_str + +/decl/hierarchy/outfit/job/medical/New() + ..() + BACKPACK_OVERRIDE_MEDICAL + +/decl/hierarchy/outfit/job/medical/cmo + name = OUTFIT_JOB_NAME("Chief Medical Officer") + l_ear =/obj/item/radio/headset/heads/cmo + uniform = /obj/item/clothing/under/chief_medical_officer + suit = /obj/item/clothing/suit/storage/toggle/labcoat/cmo + shoes = /obj/item/clothing/shoes/color/brown + hands = list(/obj/item/storage/firstaid/adv) + r_pocket = /obj/item/flashlight/pen + id_type = /obj/item/card/id/medical/head + pda_type = /obj/item/modular_computer/pda/heads + +/decl/hierarchy/outfit/job/medical/doctor + name = OUTFIT_JOB_NAME("Medical Doctor") + uniform = /obj/item/clothing/under/medical + suit = /obj/item/clothing/suit/storage/toggle/labcoat + hands = list(/obj/item/storage/firstaid/adv) + r_pocket = /obj/item/flashlight/pen + id_type = /obj/item/card/id/medical + +/decl/hierarchy/outfit/job/medical/doctor/emergency_physician + name = OUTFIT_JOB_NAME("Emergency physician") + suit = /obj/item/clothing/suit/storage/toggle/fr_jacket + +/decl/hierarchy/outfit/job/medical/doctor/surgeon + name = OUTFIT_JOB_NAME("Surgeon") + uniform = /obj/item/clothing/under/medical/scrubs/blue + head = /obj/item/clothing/head/surgery/blue + +/decl/hierarchy/outfit/job/medical/doctor/virologist + name = OUTFIT_JOB_NAME("Virologist") + uniform = /obj/item/clothing/under/virologist + suit = /obj/item/clothing/suit/storage/toggle/labcoat/virologist + mask = /obj/item/clothing/mask/surgical + +/decl/hierarchy/outfit/job/medical/doctor/virologist/New() + ..() + BACKPACK_OVERRIDE_VIROLOGY + +/decl/hierarchy/outfit/job/medical/doctor/nurse + name = OUTFIT_JOB_NAME("Nurse") + suit = null + +/decl/hierarchy/outfit/job/medical/doctor/nurse/pre_equip(mob/living/carbon/human/H) + ..() + if(H.gender == FEMALE) + if(prob(50)) + uniform = /obj/item/clothing/under/nursesuit + else + uniform = /obj/item/clothing/under/nurse + head = /obj/item/clothing/head/nursehat + else + uniform = /obj/item/clothing/under/medical/scrubs/purple + head = null + +/decl/hierarchy/outfit/job/medical/chemist + name = OUTFIT_JOB_NAME("Chemist") + uniform = /obj/item/clothing/under/chemist + suit = /obj/item/clothing/suit/storage/toggle/labcoat/chemist + id_type = /obj/item/card/id/medical + pda_type = /obj/item/modular_computer/pda/medical + +/decl/hierarchy/outfit/job/medical/chemist/New() + ..() + BACKPACK_OVERRIDE_VIROLOGY + +/decl/hierarchy/outfit/job/medical/psychiatrist + name = OUTFIT_JOB_NAME("Psychiatrist") + uniform = /obj/item/clothing/under/psych + suit = /obj/item/clothing/suit/storage/toggle/labcoat + shoes = /obj/item/clothing/shoes/dress + id_type = /obj/item/card/id/medical diff --git a/maps/exodus/outfits/science.dm b/maps/exodus/outfits/science.dm new file mode 100644 index 00000000000..b919e2825e0 --- /dev/null +++ b/maps/exodus/outfits/science.dm @@ -0,0 +1,34 @@ +/decl/hierarchy/outfit/job/science + hierarchy_type = /decl/hierarchy/outfit/job/science + l_ear = /obj/item/radio/headset/headset_sci + suit = /obj/item/clothing/suit/storage/toggle/labcoat + shoes = /obj/item/clothing/shoes/color/white + pda_type = /obj/item/modular_computer/pda/science + +/decl/hierarchy/outfit/job/science/rd + name = OUTFIT_JOB_NAME("Chief Science Officer") + l_ear = /obj/item/radio/headset/heads/rd + uniform = /obj/item/clothing/under/research_director + shoes = /obj/item/clothing/shoes/color/brown + hands = list(/obj/item/clipboard) + id_type = /obj/item/card/id/science/head + pda_type = /obj/item/modular_computer/pda/heads + +/decl/hierarchy/outfit/job/science/scientist + name = OUTFIT_JOB_NAME("Scientist") + uniform = /obj/item/clothing/under/color/white + id_type = /obj/item/card/id/science + suit = /obj/item/clothing/suit/storage/toggle/labcoat/science + +/decl/hierarchy/outfit/job/science/roboticist + name = OUTFIT_JOB_NAME("Roboticist") + uniform = /obj/item/clothing/under/color/white + shoes = /obj/item/clothing/shoes/color/black + belt = /obj/item/storage/belt/utility/full + id_type = /obj/item/card/id/science + pda_slot = slot_r_store_str + pda_type = /obj/item/modular_computer/pda/science + +/decl/hierarchy/outfit/job/science/roboticist/New() + ..() + backpack_overrides.Cut() diff --git a/maps/exodus/outfits/security.dm b/maps/exodus/outfits/security.dm new file mode 100644 index 00000000000..23f9179738c --- /dev/null +++ b/maps/exodus/outfits/security.dm @@ -0,0 +1,55 @@ +/decl/hierarchy/outfit/job/security + hierarchy_type = /decl/hierarchy/outfit/job/security + glasses = /obj/item/clothing/glasses/sunglasses/sechud + l_ear = /obj/item/radio/headset/headset_sec + gloves = /obj/item/clothing/gloves/thick + shoes = /obj/item/clothing/shoes/jackboots + backpack_contents = list(/obj/item/handcuffs = 1) + +/decl/hierarchy/outfit/job/security/New() + ..() + BACKPACK_OVERRIDE_SECURITY + +/decl/hierarchy/outfit/job/security/hos + name = OUTFIT_JOB_NAME("Head of security") + l_ear = /obj/item/radio/headset/heads/hos + uniform = /obj/item/clothing/under/head_of_security + id_type = /obj/item/card/id/security/head + pda_type = /obj/item/modular_computer/pda/heads + backpack_contents = list(/obj/item/handcuffs = 1) + +/decl/hierarchy/outfit/job/security/warden + name = OUTFIT_JOB_NAME("Warden") + uniform = /obj/item/clothing/under/warden + l_pocket = /obj/item/flash + id_type = /obj/item/card/id/security + pda_type = /obj/item/modular_computer/pda + +/decl/hierarchy/outfit/job/security/detective + name = OUTFIT_JOB_NAME("Detective") + head = /obj/item/clothing/head/det + uniform = /obj/item/clothing/under/det + suit = /obj/item/clothing/suit/storage/det_trench + l_pocket = /obj/item/flame/lighter/zippo + shoes = /obj/item/clothing/shoes/dress + hands = list(/obj/item/storage/briefcase/crimekit) + id_type = /obj/item/card/id/security + pda_type = /obj/item/modular_computer/pda + backpack_contents = list(/obj/item/storage/box/evidence = 1) + +/decl/hierarchy/outfit/job/security/detective/New() + ..() + backpack_overrides.Cut() + +/decl/hierarchy/outfit/job/security/detective/forensic + name = OUTFIT_JOB_NAME("Forensic technician") + head = null + suit = /obj/item/clothing/suit/storage/forensics/blue + +/decl/hierarchy/outfit/job/security/officer + name = OUTFIT_JOB_NAME("Security Officer") + uniform = /obj/item/clothing/under/security + l_pocket = /obj/item/flash + r_pocket = /obj/item/handcuffs + id_type = /obj/item/card/id/security + pda_type = /obj/item/modular_computer/pda diff --git a/maps/torch/torch.dm b/maps/torch/torch.dm index 6938470cf7e..a238f1e65ec 100644 --- a/maps/torch/torch.dm +++ b/maps/torch/torch.dm @@ -169,6 +169,7 @@ #define using_map_DATUM /datum/map/torch + #define PREVENT_USE_OF_PACK_SOLGOV //Wildflower Change, faction_solgov pack safety measure #elif !defined(MAP_OVERRIDE) diff --git a/packs/faction_solgov/_pack.dm b/packs/faction_solgov/_pack.dm new file mode 100644 index 00000000000..537fd0bdc27 --- /dev/null +++ b/packs/faction_solgov/_pack.dm @@ -0,0 +1,43 @@ +//Torch safety check to prevent possibly horrible behavioural conflicts. +#ifndef PREVENT_USE_OF_PACK_SOLGOV + //Skip everything. + + + /* + * Modularization of SEV Torch SolGov/Fleet/EC Content + * Contents are equivalent to Torch + * as of Bay Master Commit ac3c1e9a17415363582760a336434585ff0d9215 + * + * Notes: + * find/replace `maps/torch` with `packs/faction_solgov` for file references. + * Nonexistent accesses have been commented out, Define them in a map override. + */ + + //Single Files + #include "mapping_helpers.dm" + #include "suit_storage.dm" + #include "books.dm" + #include "mecha.dm" + #include "banner.dm" + #include "stamps.dm" + + //Support Code + #include "support_changes.dm" + + //Clothing + #include "clothing/ec_skillbadges.dm" + #include "clothing/solgov-accessory.dm" + #include "clothing/solgov-armor.dm" + #include "clothing/solgov-feet.dm" + #include "clothing/solgov-hands.dm" + #include "clothing/solgov-head.dm" + #include "clothing/solgov-suit.dm" + #include "clothing/solgov-under.dm" + + + + +#endif +#ifdef ALLOW_LOADOUT_PACK_SOLGOV + #warn ALLOW_LOADOUT_PACK_SOLGOV Unimplimented. +#endif diff --git a/packs/faction_solgov/banner.dm b/packs/faction_solgov/banner.dm new file mode 100644 index 00000000000..66a703728e5 --- /dev/null +++ b/packs/faction_solgov/banner.dm @@ -0,0 +1,58 @@ +/obj/structure/solbanner + name = "\improper SCG banner" + icon = 'packs/faction_solgov/icons/obj/solbanner.dmi' + icon_state = "wood" + desc = "A wooden pole bearing a banner of Sol Central Government. Ave." + anchored = TRUE + obj_flags = OBJ_FLAG_ANCHORABLE + layer = ABOVE_HUMAN_LAYER + +/obj/structure/solbanner/exo + name = "exoplanet SCG banner" + desc = "A rugged metal frame with a banner of Sol Central Government on it. Resistant to radiation bleaching." + icon_state = "steel" + obj_flags = 0 + var/plantedby + +/obj/structure/solbanner/exo/Initialize() + . = ..() + flick("deploy",src) + +/obj/structure/solbanner/exo/examine(mob/user) + . = ..() + if(plantedby) + to_chat(user, "[plantedby]") + +/obj/item/solbanner + name = "\improper SCG banner capsule" + desc = "SCG banner packed in a rapid deployment capsule. Used for staking claims on new worlds in the name of Sol Central Government." + icon = 'packs/faction_solgov/icons/obj/uniques.dmi' + icon_state = "banner_stowed" + w_class = ITEM_SIZE_HUGE +// req_access = list(access_pathfinder) + +/obj/item/solbanner/attack_self(mob/living/carbon/human/user) + ..() + if(!istype(user)) + return + if(!allowed(user)) + to_chat(user, "\The [src] does not recognize your authority!") + return + var/turf/T = get_turf(src) + if(!istype(T) && !istype(T,/turf/space)) + to_chat(user, "\The [src] is unable to deploy here!") + return + if(user.unEquip(src)) + forceMove(T) + if(GLOB.using_map.use_overmap) + var/obj/effect/overmap/visitable/sector/exoplanet/P = map_sectors["[z]"] + if(istype(P)) + SSstatistics.add_field(STAT_FLAGS_PLANTED, 1) + qdel(src) + var/obj/structure/solbanner/exo/E = new(T) + var/obj/item/card/id/ID = user.GetIdCard() + var/dudename = ID.registered_name + if(istype(ID.military_rank)) + dudename = "[ID.military_rank.name] [dudename]" + E.plantedby = "Planted on [stationdate2text()] by [dudename], [user.get_assignment()] of [GLOB.using_map.full_name]." + T.visible_message("[user] successfully claims this world with \the [E]!") diff --git a/packs/faction_solgov/books.dm b/packs/faction_solgov/books.dm new file mode 100644 index 00000000000..ddb4bc5d5cb --- /dev/null +++ b/packs/faction_solgov/books.dm @@ -0,0 +1,66 @@ +/obj/item/book/manual/solgov_law + name = "Sol Central Government Law" + desc = "A brief overview of SolGov Law." + icon_state = "bookSolGovLaw" + author = "The Sol Central Government" + title = "Sol Central Government Law" + +/obj/item/book/manual/solgov_law/Initialize() + . = ..() + dat = {" + + + + + + + + + + + "} + + +/obj/item/book/manual/military_law + name = "The Sol Code of Military Justice" + desc = "A brief overview of military law." + icon_state = "bookSolGovLaw" + author = "The Sol Central Government" + title = "The Sol Code of Military Justice" + +/obj/item/book/manual/military_law/Initialize() + . = ..() + dat = {" + + + + + + + + + + + "} + +/obj/item/book/manual/sol_sop + name = "Standard Operating Procedure" + desc = "A comprehensive overview of SolGov Standard Proceedures." + icon_state = "booksolregs" + author = "The Sol Central Government" + title = "Standard Operating Procedure" + +/obj/item/book/manual/sol_sop/Initialize() + . = ..() + dat = {" + + + + + + + + + + + "} diff --git a/packs/faction_solgov/clothing/ec_skillbadges.dm b/packs/faction_solgov/clothing/ec_skillbadges.dm new file mode 100644 index 00000000000..43767b6794d --- /dev/null +++ b/packs/faction_solgov/clothing/ec_skillbadges.dm @@ -0,0 +1,91 @@ + +/obj/item/clothing/accessory/solgov/skillbadge + name = "skill badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on spawning wrong types. Informally known as 'Shouldn't be seeing this'." + slot = ACCESSORY_SLOT_INSIGNIA + var/badgecolor //for on-mob sprite cause im not putting 9000 colored pixels in dmi + +/obj/item/clothing/accessory/solgov/skillbadge/get_mob_overlay(mob/user_mob, slot) + var/image/I = ..() + if(!istype(loc,/obj/item/clothing/)) + return I + I.icon_state = "ec_spec_badge" + I.color = badgecolor + return I + +/obj/item/clothing/accessory/solgov/skillbadge/botany + name = "\improper Field Xenobotany Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on handling exotic xenoflora. Informally known as 'Vine Wrangler'." + icon_state = "ec_badge_botany" + badgecolor = "#387c4f" + +/obj/item/clothing/accessory/solgov/skillbadge/netgun + name = "\improper Xenofauna Acquisition Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on capturing alien wildlife with the netgun. Informally known as 'Xeno-Cowboy'." + icon_state = "ec_badge_netgun" + badgecolor = "#6a60a1" + +/obj/item/clothing/accessory/solgov/skillbadge/eva + name = "\improper Void Mobility Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on moving around in zero-g using a jetpack. Informally known as 'Zoomer'." + icon_state = "ec_badge_eva" + badgecolor = "#4d9799" + +/obj/item/clothing/accessory/solgov/skillbadge/medical + name = "\improper Advanced First Aid Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on CPR and basic medical tech. Informally known as 'Para-paramedic'." + icon_state = "ec_badge_med" + badgecolor = "#47799e" + +/obj/item/clothing/accessory/solgov/skillbadge/mech + name = "\improper Exosuit Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on piloting exosuits. Informally known as 'Exonaut'." + icon_state = "ec_badge_exo" + badgecolor = "#72763d" + +/obj/item/clothing/accessory/solgov/skillbadge/electric + name = "\improper Electrical Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on working with high-voltage electrical systems. Informally known as 'Jury-rigger'." + icon_state = "ec_badge_electro" + badgecolor = "#8e633f" + +/obj/item/clothing/accessory/solgov/skillbadge/science + name = "\improper Research Specialist badge" + desc = "An EC skill badge signifying that the bearer has passed the advanced training on assisting in the labs and working the sensor suites. Informally known as 'Peeper'." + icon_state = "ec_badge_sci" + badgecolor = "#7876ad" + +// Voidsuit accessory + +/obj/item/clothing/accessory/solgov/skillstripe + name = "specialist stripe" + desc = "A thin stripe of spaceworthy material with vacuum-rated adhesive, for attaching to the voidsuit. Indicates some sort of specialist training." + slot = ACCESSORY_SLOT_INSIGNIA + on_rolled = list("down" = "none") + accessory_flags = ACCESSORY_REMOVABLE | ACCESSORY_HIGH_VISIBILITY + icon_state = "ec_stripe" + +/obj/item/clothing/accessory/solgov/skillstripe/botany + name = "xenobotanist stripe" + desc = "A thin stripe of spaceworthy material with vacuum-rated adhesive, for attaching to the voidsuit. Indicates Field Xenobotany Specialist training." + color = "#387c4f" + +/obj/item/clothing/accessory/solgov/skillstripe/netgun + name = "netgunner stripe" + desc = "A thin stripe of spaceworthy material with vacuum-rated adhesive, for attaching to the voidsuit. Indicates Xenofauna Acquisition Specialist training." + color = "#6a60a1" + +/obj/item/clothing/accessory/solgov/skillstripe/eva + name = "void stripe" + desc = "A thin stripe of spaceworthy material with vacuum-rated adhesive, for attaching to the voidsuit. Indicates Void Mobility Specialist training." + color = "#3d7172" + +/obj/item/clothing/accessory/solgov/skillstripe/medical + name = "medic stripe" + desc = "A thin stripe of spaceworthy material with vacuum-rated adhesive, for attaching to the voidsuit. Indicates Advanced First Aid Specialist training." + color = "#2d6295" + +/obj/item/clothing/accessory/solgov/skillstripe/electric + name = "electrician stripe" + desc = "A thin stripe of spaceworthy material with vacuum-rated adhesive, for attaching to the voidsuit. Indicates Electrical Specialist training." + color = "#8e633f" diff --git a/packs/faction_solgov/clothing/solgov-accessory.dm b/packs/faction_solgov/clothing/solgov-accessory.dm new file mode 100644 index 00000000000..2c81a81227a --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-accessory.dm @@ -0,0 +1,797 @@ +/obj/item/clothing/accessory/solgov + name = "master solgov accessory" + icon = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + accessory_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi') + w_class = ITEM_SIZE_TINY + +/***** +medals +*****/ +/obj/item/clothing/accessory/medal/solgov + name = "master solgov medal" + desc = "You shouldn't be seeing this." + icon = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + accessory_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi') + +/obj/item/clothing/accessory/medal/solgov/iron/star + name = "iron star medal" + desc = "An iron star awarded to members of the SCG for meritorious achievement or service in a combat zone." + icon_state = "iron_star" + +/obj/item/clothing/accessory/medal/solgov/iron/sol + name = "\improper Sol expeditionary medal" + desc = "An iron medal awarded to members of the SCG for service outside of the borders of the Sol Central Government." + icon_state = "iron_sol" + +/obj/item/clothing/accessory/medal/solgov/bronze/heart + name = "bronze heart medal" + desc = "A bronze heart awarded to members of the SCG for injury or death in the line of duty." + icon_state = "bronze_heart" + +/obj/item/clothing/accessory/medal/solgov/bronze/sol + name = "\improper Sol defensive operations medal" + desc = "A bronze medal awarded for members of the SCG for service defending the border regions." + icon_state = "bronze_sol" + +/obj/item/clothing/accessory/medal/solgov/silver/sword + name = "combat action medal" + desc = "A silver medal awarded to members of the SCG for honorable service while under enemy fire." + icon_state = "silver_sword" + +/obj/item/clothing/accessory/medal/solgov/silver/sol + name = "\improper Sol valor medal" + desc = "A silver medal awarded for members of the SCG for acts of exceptional valor." + icon_state = "silver_sol" + +/obj/item/clothing/accessory/medal/solgov/gold/star + name = "gold star medal" + desc = "A gold star awarded to members of the SCG for acts of heroism in a combat zone." + icon_state = "gold_star" + +/obj/item/clothing/accessory/medal/solgov/gold/sun + name = "solar service medal" + desc = "A gold medal awarded to members of the SCG by the Secretary General for significant contributions to the Sol Central Government." + icon_state = "gold_sun" + +/obj/item/clothing/accessory/medal/solgov/gold/crest + name = "solar honor medal" + desc = "A gold medal awarded to members of the Defense Forces by the Secretary General for personal acts of valor and heroism above and beyond the call of duty." + icon_state = "gold_crest" + +/obj/item/clothing/accessory/medal/solgov/gold/sol + name = "\improper Sol sapientarian medal" + desc = "A gold medal awarded for members of the SCG for significant contributions to sapient rights." + icon_state = "gold_sol" + +/obj/item/clothing/accessory/medal/solgov/heart + name = "medical medal" + desc = "A white heart emblazoned with a red cross awarded to members of the SCG for service as a medical professional in a combat zone." + icon_state = "white_heart" + +/obj/item/clothing/accessory/solgov + var/check_codex_val = FACTION_FLEET + +/obj/item/clothing/accessory/solgov/get_codex_value() + return check_codex_val || ..() + +/obj/item/clothing/accessory/solgov/torch_patch + name = "\improper Torch mission patch" + desc = "A fire resistant shoulder patch, worn by the personnel involved in the Torch Project." + icon_state = "torchpatch" + on_rolled = list("down" = "none") + slot = ACCESSORY_SLOT_INSIGNIA + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_accessories_sol_unathi.dmi' + ) + +/***** +patches +*****/ +/obj/item/clothing/accessory/solgov/ec_patch + name = "\improper Observatory patch" + desc = "A laminated shoulder patch, carrying the symbol of the Sol Central Government Expeditionary Corpss Observatory, or SCGEO for short, the eyes and ears of the Expeditionary Corps' missions." + icon_state = "ecpatch1" + on_rolled = list("down" = "none") + slot = ACCESSORY_SLOT_INSIGNIA + check_codex_val = FACTION_EXPEDITIONARY + +/obj/item/clothing/accessory/solgov/ec_patch/fieldops + name = "\improper Field Operations patch" + desc = "A radiation-shielded shoulder patch, carrying the symbol of the Sol Central Government Expeditionary Corps Field Operations, or SCGECFO for short, the hands-on workers of every Expeditionary Corps mission." + icon_state = "ecpatch2" + +/obj/item/clothing/accessory/solgov/cultex_patch + name = "\improper Cultural Exchange patch" + desc = "A radiation-shielded shoulder patch, denoting service in the the Sol Central Government Expeditionary Corps Cultural Exchange program." + icon_state = "ecpatch3" + slot = ACCESSORY_SLOT_INSIGNIA + check_codex_val = FACTION_EXPEDITIONARY + +/obj/item/clothing/accessory/solgov/fleet_patch + name = "\improper First Fleet patch" + desc = "A fancy shoulder patch carrying insignia of First Fleet, the Sol Guard, stationed in Sol." + icon_state = "fleetpatch1" + on_rolled = list("down" = "none") + slot = ACCESSORY_SLOT_INSIGNIA + +/obj/item/clothing/accessory/solgov/fleet_patch/second + name = "\improper Second Fleet patch" + desc = "A well-worn shoulder patch carrying insignia of Second Fleet, the Home Guard, tasked with defense of Sol territories." + icon_state = "fleetpatch2" + +/obj/item/clothing/accessory/solgov/fleet_patch/third + name = "\improper Third Fleet patch" + desc = "A scuffed shoulder patch carrying insignia of Third Fleet, the Border Guard, guarding borders of Sol territory against Vox and pirates." + icon_state = "fleetpatch3" + +/obj/item/clothing/accessory/solgov/fleet_patch/fourth + name = "\improper Fourth Fleet patch" + desc = "A pristine shoulder patch carrying insignia of Fourth Fleet, stationed on Skrell border." + icon_state = "fleetpatch4" + +/obj/item/clothing/accessory/solgov/fleet_patch/fifth + name = "\improper Fifth Fleet patch" + desc = "A tactical shoulder patch carrying insignia of Fifth Fleet, the Quick Reaction Force, recently formed and outfited with last tech." + icon_state = "fleetpatch5" + +/***** +scarves +*****/ +/obj/item/clothing/accessory/solgov/ec_scarf + name = "expeditionary scarf" + desc = "An SCG blue silk scarf, meant to be worn with Expeditionary Corps uniforms." + icon = 'icons/obj/clothing/obj_accessories.dmi' + accessory_icons = list(slot_w_uniform_str = 'icons/mob/onmob/onmob_accessories.dmi', slot_wear_suit_str = 'icons/mob/onmob/onmob_accessories.dmi') + icon_state = "whitescarf" + on_rolled = list("down" = "none") + color = "#68a0ce" + check_codex_val = FACTION_EXPEDITIONARY + +/obj/item/clothing/accessory/solgov/ec_scarf/observatory + name = "\improper Observatory scarf" + desc = "A silk scarf in Expeditionary Corps Observatory section colors, meant to be worn with Expeditionary Corps uniforms." + color = "#58bb59" + +/obj/item/clothing/accessory/solgov/ec_scarf/fieldops + name = "\improper Field Operations scarf" + desc = "A silk scarf in Expeditionary Corps Field Operations section colors, meant to be worn with Expeditionary Corps uniforms." + color = "#9f84b3" + +/****** +ribbons +******/ +/obj/item/clothing/accessory/ribbon/solgov + name = "ribbon" + desc = "A simple military decoration." + icon_state = "ribbon_marksman" + on_rolled = list("down" = "none") + slot = ACCESSORY_SLOT_MEDAL + icon = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + accessory_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi') + w_class = ITEM_SIZE_TINY + +/obj/item/clothing/accessory/ribbon/solgov/marksman + name = "marksmanship ribbon" + desc = "A military decoration awarded to members of the SCG for good marksmanship scores in training. Common in the days of energy weapons." + icon_state = "ribbon_marksman" + +/obj/item/clothing/accessory/ribbon/solgov/peace + name = "peacekeeping ribbon" + desc = "A military decoration awarded to members of the SCG for service during a peacekeeping operation." + icon_state = "ribbon_peace" + +/obj/item/clothing/accessory/ribbon/solgov/frontier + name = "frontier ribbon" + desc = "A military decoration awarded to members of the SCG for service along the frontier." + icon_state = "ribbon_frontier" + +/obj/item/clothing/accessory/ribbon/solgov/instructor + name = "instructor ribbon" + desc = "A military decoration awarded to members of the SCG for service as an instructor." + icon_state = "ribbon_instructor" + +/************* +specialty pins +*************/ +/obj/item/clothing/accessory/solgov/specialty + name = "speciality blaze" + desc = "A color blaze denoting fleet personnel in some special role. This one is silver." + icon_state = "marinerank_command" + slot = ACCESSORY_SLOT_INSIGNIA + icon_state = "fleetspec" + +/obj/item/clothing/accessory/solgov/specialty/janitor + name = "custodial blazes" + desc = "Purple blazes denoting a custodial technician." + color = "#913da7" + +/obj/item/clothing/accessory/solgov/specialty/brig + name = "brig blazes" + desc = "Red blazes denoting a brig chief." + color = "#bf0000" + +/obj/item/clothing/accessory/solgov/specialty/forensic + name = "forensics blazes" + desc = "Steel blazes denoting a forensic technician." + color = "#939fb1" + +/obj/item/clothing/accessory/solgov/specialty/atmos + name = "atmospherics blazes" + desc = "Turquoise blazes denoting an atmospheric technician." + color = "#469085" + +/obj/item/clothing/accessory/solgov/specialty/counselor + name = "counselor blazes" + desc = "Blue blazes denoting a counselor." + color = "#4c9ce4" + +/obj/item/clothing/accessory/solgov/specialty/chemist + name = "pharmacy blazes" + desc = "Orange blazes denoting a pharmacist." + color = "#ff6600" + +/obj/item/clothing/accessory/solgov/specialty/enlisted + name = "enlisted qualification pin" + desc = "An iron pin denoting some special qualification." + icon_state = "fleetpin_enlisted" + +/obj/item/clothing/accessory/solgov/specialty/officer + name = "officer's qualification pin" + desc = "A golden pin denoting some special qualification." + icon_state = "fleetpin_officer" + +/obj/item/clothing/accessory/solgov/specialty/pilot + name = "pilot's qualification pin" + desc = "An iron pin denoting the qualification to fly SCG spacecraft." + icon_state = "pin_pilot" + +/***** +badges +*****/ +/obj/item/clothing/accessory/badge/solgov + name = "master solgov badge" + icon = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + accessory_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi') + +/obj/item/clothing/accessory/badge/solgov/security + name = "security forces badge" + desc = "A silver law enforcement badge. Stamped with the words 'Master at Arms'." + icon_state = "silverbadge" + slot_flags = SLOT_TIE + badge_string = "Sol Central Government" + +/obj/item/clothing/accessory/badge/solgov/tags + name = "dog tags" + desc = "Plain identification tags made from a durable metal. They are stamped with a variety of informational details." + gender = PLURAL + icon_state = "tags" + badge_string = "Sol Central Government" + slot_flags = SLOT_MASK | SLOT_TIE + var/owner_rank + var/owner_name + var/owner_branch + +/obj/item/clothing/accessory/badge/solgov/tags/proc/loadout_setup(mob/M) + set_name(M.real_name) + set_desc(M) + +/obj/item/clothing/accessory/badge/solgov/tags/set_desc(mob/living/carbon/human/H) + if(!istype(H)) + return + owner_rank = H.char_rank && H.char_rank.name + owner_name = H.real_name + owner_branch = H.char_branch && H.char_branch.name + var/decl/cultural_info/culture = H.get_cultural_value(TAG_RELIGION) + var/religion = culture ? culture.name : "Unset" + desc = "[initial(desc)]\nName: [H.real_name] ([H.get_species()])[H.char_branch ? "\nBranch: [H.char_branch.name]" : ""]\nReligion: [religion]\nBlood type: [H.b_type]" + +/obj/item/clothing/accessory/badge/solgov/representative + name = "representative's badge" + desc = "A leather-backed plastic badge with a variety of information printed on it. Belongs to a representative of the Sol Central Government." + icon_state = "solbadge" + slot_flags = SLOT_TIE + badge_string = "Sol Central Government" + +/******* +armbands +*******/ +/obj/item/clothing/accessory/armband/solgov + name = "master solgov armband" + icon = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + accessory_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_accessories_sol_unathi.dmi' + ) + +/obj/item/clothing/accessory/armband/solgov/mp + name = "military police brassard" + desc = "An armlet, worn by the crew to display which department they're assigned to. This one is black with 'MP' in white." + icon_state = "mpband" + +/obj/item/clothing/accessory/armband/solgov/ma + name = "master at arms brassard" + desc = "An armlet, worn by the crew to display which department they're assigned to. This one is white with 'MA' in navy blue." + icon_state = "maband" + +/obj/item/storage/box/armband + name = "box of spare military police armbands" + desc = "A box full of security armbands. For use in emergencies when provisional security personnel are needed." + startswith = list(/obj/item/clothing/accessory/armband/solgov/mp = 5) + +/***************** +armour attachments +*****************/ +/obj/item/clothing/accessory/armor_tag/solgov + name = "\improper SCG Flag" + desc = "An emblem depicting the Sol Central Government's flag." + icon_override = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + icon = 'packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi' + accessory_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi') + icon_state = "solflag" + slot = ACCESSORY_SLOT_ARMOR_M + +/obj/item/clothing/accessory/armor_tag/solgov/ec + name = "\improper Expeditionary Corps crest" + desc = "An emblem depicting the crest of the SCG Expeditionary Corps." + icon_state = "ecflag" + +/obj/item/clothing/accessory/armor_tag/solgov/sec + name = "\improper POLICE tag" + desc = "An armor tag with the word POLICE printed in silver lettering on it." + icon_state = "sectag" + +/obj/item/clothing/accessory/armor_tag/solgov/medic + name = "\improper MEDIC tag" + desc = "An armor tag with the word MEDIC printed in red lettering on it." + icon_state = "medictag" + +/obj/item/clothing/accessory/armor_tag/solgov/agent + name = "\improper SFP AGENT tag" + desc = "An armor tag with the words SFP AGENT printed in gold lettering on it." + icon_state = "agenttag" + +/obj/item/clothing/accessory/armor_tag/solgov/com + name = "\improper SCG tag" + desc = "An armor tag with the words SOL CENTRAL GOVERNMENT printed in gold lettering on it." + icon_state = "comtag" + +/obj/item/clothing/accessory/armor_tag/solgov/com/sec + name = "\improper POLICE tag" + desc = "An armor tag with the words POLICE printed in gold lettering on it." + +/obj/item/clothing/accessory/helmet_cover/blue/sol + name = "peacekeeper helmet cover" + desc = "A fabric cover for armored helmets. This one is in SCG peacekeeper colors." + +/************** +department tags +**************/ +/obj/item/clothing/accessory/solgov/department + name = "department insignia" + desc = "Insignia denoting assignment to a department. These appear blank." + icon_state = "dept_exped" + on_rolled = list("down" = "none", "rolled" = "dept_exped_sleeves") + slot = ACCESSORY_SLOT_DEPT + accessory_flags = EMPTY_BITFIELD + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_accessories_sol_unathi.dmi' + ) + +/obj/item/clothing/accessory/solgov/department/command + name = "command insignia" + desc = "Insignia denoting assignment to the command department. These fit Expeditionary Corps uniforms." + color = "#e5ea4f" + +/obj/item/clothing/accessory/solgov/department/command/service + icon_state = "dept_exped_service" + +/obj/item/clothing/accessory/solgov/department/command/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the command department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/command/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the command department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/engineering + name = "engineering insignia" + desc = "Insignia denoting assignment to the engineering department. These fit Expeditionary Corps uniforms." + color = "#ff7f00" + +/obj/item/clothing/accessory/solgov/department/engineering/service + icon_state = "dept_exped_service" + +/obj/item/clothing/accessory/solgov/department/engineering/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the engineering department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/engineering/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the engineering department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/security + name = "security insignia" + desc = "Insignia denoting assignment to the security department. These fit Expeditionary Corps uniforms." + color = "#bf0000" + +/obj/item/clothing/accessory/solgov/department/security/service + icon_state = "dept_exped_service" + +/obj/item/clothing/accessory/solgov/department/security/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the security department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/security/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the security department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/medical + name = "medical insignia" + desc = "Insignia denoting assignment to the medical department. These fit Expeditionary Corps uniforms." + color = "#4c9ce4" + +/obj/item/clothing/accessory/solgov/department/medical/service + icon_state = "dept_exped_service" + color = "#7faad1" + +/obj/item/clothing/accessory/solgov/department/medical/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the medical department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/medical/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the medical department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/supply + name = "supply insignia" + desc = "Insignia denoting assignment to the supply department. These fit Expeditionary Corps uniforms." + color = "#bb9042" + +/obj/item/clothing/accessory/solgov/department/supply/service + icon_state = "dept_exped_service" + +/obj/item/clothing/accessory/solgov/department/supply/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the supply department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/supply/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the supply department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/service + name = "service insignia" + desc = "Insignia denoting assignment to the service department. These fit Expeditionary Corps uniforms." + color = "#6eaa2c" + +/obj/item/clothing/accessory/solgov/department/service/service + icon_state = "dept_exped_service" + +/obj/item/clothing/accessory/solgov/department/service/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the service department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/service/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the service department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/exploration + name = "exploration insignia" + desc = "Insignia denoting assignment to the exploration department. These fit Expeditionary Corps uniforms." + color = "#68099e" + +/obj/item/clothing/accessory/solgov/department/exploration/service + icon_state = "dept_exped_service" + +/obj/item/clothing/accessory/solgov/department/exploration/fleet + icon_state = "dept_fleet" + desc = "Insignia denoting assignment to the exploration department. These fit Fleet uniforms." + on_rolled = list("rolled" = "dept_fleet_sleeves", "down" = "none") + +/obj/item/clothing/accessory/solgov/department/exploration/army + icon_state = "dept_army" + desc = "Insignia denoting assignment to the exploration department. These fit Army uniforms." + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/department/research + name = "research insignia" + desc = "Insignia denoting assignment to the research department. These fit Expeditionary Corps uniforms." + color = COLOR_RESEARCH + +/obj/item/clothing/accessory/solgov/department/research/service + icon_state = "dept_exped_service" + +/********* +ranks - ec +*********/ + +/obj/item/clothing/accessory/solgov/rank + name = "ranks" + desc = "Insignia denoting rank of some kind. These appear blank." + icon_state = "fleetrank" + on_rolled = list("down" = "none") + slot = ACCESSORY_SLOT_RANK + gender = PLURAL + accessory_flags = ACCESSORY_REMOVABLE | ACCESSORY_HIGH_VISIBILITY + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_accessories_sol_unathi.dmi' + ) + +/obj/item/clothing/accessory/solgov/rank/ec + name = "explorer ranks" + desc = "Insignia denoting rank of some kind. These appear blank." + icon_state = "ecrank_e1" + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/rank/ec/enlisted + name = "ranks (E-1 apprentice explorer)" + desc = "Insignia denoting the rank of Apprentice Explorer." + icon_state = "ecrank_e1" + +/obj/item/clothing/accessory/solgov/rank/ec/enlisted/e3 + name = "ranks (E-3 explorer)" + desc = "Insignia denoting the rank of Explorer." + icon_state = "ecrank_e3" + +/obj/item/clothing/accessory/solgov/rank/ec/enlisted/e5 + name = "ranks (E-5 senior explorer)" + desc = "Insignia denoting the rank of Senior Explorer." + icon_state = "ecrank_e5" + +/obj/item/clothing/accessory/solgov/rank/ec/enlisted/e7 + name = "ranks (E-7 chief explorer)" + desc = "Insignia denoting the rank of Chief Explorer." + icon_state = "ecrank_e7" + +/obj/item/clothing/accessory/solgov/rank/ec/officer + name = "ranks (O-1 ensign)" + desc = "Insignia denoting the rank of Ensign." + icon_state = "ecrank_o1" + +/obj/item/clothing/accessory/solgov/rank/ec/officer/o3 + name = "ranks (O-3 lieutenant)" + desc = "Insignia denoting the rank of Lieutenant." + icon_state = "ecrank_o3" + +/obj/item/clothing/accessory/solgov/rank/ec/officer/o5 + name = "ranks (O-5 commander)" + desc = "Insignia denoting the rank of Commander." + icon_state = "ecrank_o5" + +/obj/item/clothing/accessory/solgov/rank/ec/officer/o6 + name = "ranks (O-6 captain)" + desc = "Insignia denoting the rank of Captain." + icon_state = "ecrank_o6" + +/obj/item/clothing/accessory/solgov/rank/ec/officer/o8 + name = "ranks (O-8 admiral)" + desc = "Insignia denoting the rank of Admiral." + icon_state = "ecrank_o8" + +/************ +ranks - fleet +************/ +/obj/item/clothing/accessory/solgov/rank/fleet + name = "naval ranks" + desc = "Insignia denoting naval rank of some kind. These appear blank." + icon_state = "fleetrank" + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted + name = "ranks (E-1 crewman recruit)" + desc = "Insignia denoting the rank of Crewman Recruit." + icon_state = "fleetrank_enlisted" + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e2 + name = "ranks (E-2 crewman apprentice)" + desc = "Insignia denoting the rank of Crewman Apprentice." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e3 + name = "ranks (E-3 crewman)" + desc = "Insignia denoting the rank of Crewman." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e4 + name = "ranks (E-4 petty officer third class)" + desc = "Insignia denoting the rank of Petty Officer Third Class." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e5 + name = "ranks (E-5 petty officer second class)" + desc = "Insignia denoting the rank of Petty Officer Second Class." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e6 + name = "ranks (E-6 petty officer first class)" + desc = "Insignia denoting the rank of Petty Officer First Class." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e7 + name = "ranks (E-7 chief petty officer)" + desc = "Insignia denoting the rank of Chief Petty Officer." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e8 + name = "ranks (E-8 senior chief petty officer)" + desc = "Insignia denoting the rank of Senior Chief Petty Officer." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e9 + name = "ranks (E-9 master chief petty officer)" + desc = "Insignia denoting the rank of Master Chief Petty Officer." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e9_alt1 + name = "ranks (E-9 command master chief petty officer)" + desc = "Insignia denoting the rank of Command Master Chief Petty Officer." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e9_alt2 + name = "ranks (E-9 fleet master chief petty officer)" + desc = "Insignia denoting the rank of Fleet Master Chief Petty Officer." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e9_alt3 + name = "ranks (E-9 force master chief petty officer)" + desc = "Insignia denoting the rank of Force Master Chief Petty Officer." + +/obj/item/clothing/accessory/solgov/rank/fleet/enlisted/e9_alt4 + name = "ranks (E-9 master chief petty officer of the Fleet)" + desc = "Insignia denoting the rank of Master Chief Petty Officer of the Fleet." + +/obj/item/clothing/accessory/solgov/rank/fleet/officer + name = "ranks (O-1 ensign)" + desc = "Insignia denoting the rank of Ensign." + icon_state = "fleetrank_officer" + +/obj/item/clothing/accessory/solgov/rank/fleet/officer/wo1_monkey + name = "makeshift ranks (WO-1 warrant officer 1)" + desc = "Insignia denoting the mythical rank of Warrant Officer. Too bad it's obviously fake." + +/obj/item/clothing/accessory/solgov/rank/fleet/officer/o2 + name = "ranks (O-2 sub-lieutenant)" + desc = "Insignia denoting the rank of Sub-lieutenant." + +/obj/item/clothing/accessory/solgov/rank/fleet/officer/o3 + name = "ranks (O-3 lieutenant)" + desc = "Insignia denoting the rank of Lieutenant." + +/obj/item/clothing/accessory/solgov/rank/fleet/officer/o4 + name = "ranks (O-4 lieutenant commander)" + desc = "Insignia denoting the rank of Lieutenant Commander." + +/obj/item/clothing/accessory/solgov/rank/fleet/officer/o5 + name = "ranks (O-5 commander)" + desc = "Insignia denoting the rank of Commander." + +/obj/item/clothing/accessory/solgov/rank/fleet/officer/o6 + name = "ranks (O-6 captain)" + desc = "Insignia denoting the rank of Captain." + icon_state = "fleetrank_command" + +/obj/item/clothing/accessory/solgov/rank/fleet/flag + name = "ranks (O-7 commodore)" + desc = "Insignia denoting the rank of Commodore." + icon_state = "fleetrank_command" + +/obj/item/clothing/accessory/solgov/rank/fleet/flag/o8 + name = "ranks (O-8 rear admiral)" + desc = "Insignia denoting the rank of Rear Admiral." + +/obj/item/clothing/accessory/solgov/rank/fleet/flag/o9 + name = "ranks (O-9 vice admiral)" + desc = "Insignia denoting the rank of Vice Admiral." + +/obj/item/clothing/accessory/solgov/rank/fleet/flag/o10 + name = "ranks (O-10 admiral)" + desc = "Insignia denoting the rank of Admiral." + +/obj/item/clothing/accessory/solgov/rank/fleet/flag/o10_alt + name = "ranks (O-10 fleet admiral)" + desc = "Insignia denoting the rank of Fleet Admiral." + +/************** +ranks - marines +**************/ +/obj/item/clothing/accessory/solgov/rank/army + name = "army ranks" + desc = "Insignia denoting marine rank of some kind. These appear blank." + icon_state = "armyrank_enlisted" + on_rolled = list("down" = "none") + +/obj/item/clothing/accessory/solgov/rank/army/enlisted + name = "ranks (E-1 private)" + desc = "Insignia denoting the rank of Private." + icon_state = "armyrank_enlisted" + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e2 + name = "ranks (E-2 private second class)" + desc = "Insignia denoting the rank of Private Second Class." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e3 + name = "ranks (E-3 private first class)" + desc = "Insignia denoting the rank of Private First Class." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e4 + name = "ranks (E-4 corporal)" + desc = "Insignia denoting the rank of Corporal." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e5 + name = "ranks (E-5 sergeant)" + desc = "Insignia denoting the rank of Sergeant." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e6 + name = "ranks (E-6 staff sergeant)" + desc = "Insignia denoting the rank of Staff Sergeant." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e7 + name = "ranks (E-7 sergeant first class)" + desc = "Insignia denoting the rank of Sergeant First Class." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e8 + name = "ranks (E-8 master sergeant)" + desc = "Insignia denoting the rank of Master Sergeant." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e8_alt + name = "ranks (E-8 first sergeant)" + desc = "Insignia denoting the rank of First Sergeant." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e9 + name = "ranks (E-9 sergeant major)" + desc = "Insignia denoting the rank of Sergeant Major." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e9_alt1 + name = "ranks (E-9 command sergeant major)" + desc = "Insignia denoting the rank of Command Sergeant Major." + +/obj/item/clothing/accessory/solgov/rank/army/enlisted/e9_alt2 + name = "ranks (E-9 sergeant major of the Army)" + desc = "Insignia denoting the rank of Sergeant Major of the Army." + +/obj/item/clothing/accessory/solgov/rank/army/officer + name = "ranks (O-1 second lieutenant)" + desc = "Insignia denoting the rank of Second Lieutenant." + icon_state = "armyrank_officer" + +/obj/item/clothing/accessory/solgov/rank/army/officer/o2 + name = "ranks (O-2 first lieutenant)" + desc = "Insignia denoting the rank of First Lieutenant." + +/obj/item/clothing/accessory/solgov/rank/army/officer/o3 + name = "ranks (O-3 captain)" + desc = "Insignia denoting the rank of Captain." + +/obj/item/clothing/accessory/solgov/rank/army/officer/o4 + name = "ranks (O-4 major)" + desc = "Insignia denoting the rank of Major." + +/obj/item/clothing/accessory/solgov/rank/army/officer/o5 + name = "ranks (O-5 lieutenant colonel)" + desc = "Insignia denoting the rank of Lieutenant Colonel." + +/obj/item/clothing/accessory/solgov/rank/army/officer/o6 + name = "ranks (O-6 colonel)" + desc = "Insignia denoting the rank of Colonel." + +/obj/item/clothing/accessory/solgov/rank/army/flag + name = "ranks (O-7 brigadier general)" + desc = "Insignia denoting the rank of Brigadier General." + icon_state = "armyrank_command" + +/obj/item/clothing/accessory/solgov/rank/army/flag/o8 + name = "ranks (O-8 major general)" + desc = "Insignia denoting the rank of Major General." + +/obj/item/clothing/accessory/solgov/rank/army/flag/o9 + name = "ranks (O-9 lieutenant general)" + desc = "Insignia denoting the rank of lieutenant general." + +/obj/item/clothing/accessory/solgov/rank/army/flag/o10 + name = "ranks (O-10 general)" + desc = "Insignia denoting the rank of General." + +/obj/item/clothing/accessory/solgov/rank/army/flag/o10_alt + name = "ranks (O-10 field marshal)" + desc = "Insignia denoting the rank of Field Marshal." diff --git a/packs/faction_solgov/clothing/solgov-armor.dm b/packs/faction_solgov/clothing/solgov-armor.dm new file mode 100644 index 00000000000..62af5b1519c --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-armor.dm @@ -0,0 +1,43 @@ +/obj/item/clothing/suit/armor/vest/solgov + name = "\improper Sol Central Government armored vest" + desc = "A synthetic armor vest. This one is marked with the crest of the Sol Central Government." + icon_state = "solvest" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + +/obj/item/clothing/suit/storage/vest/solgov + name = "\improper Sol Central Government heavy armored vest" + desc = "A synthetic armor vest with PEACEKEEPER printed in distinctive blue lettering on the chest. This one has added webbing and ballistic plates." + icon_state = "solwebvest" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + +/obj/item/clothing/suit/storage/vest/solgov/security + name = "master at arms heavy armored vest" + desc = "A synthetic armor vest with MASTER AT ARMS printed in silver lettering on the chest. This one has added webbing and ballistic plates." + icon_state = "secwebvest" + +/obj/item/clothing/suit/storage/vest/solgov/command + name = "command heavy armored vest" + desc = "A synthetic armor vest with SOL CENTRAL GOVERNMENT printed in gold lettering on the chest. This one has added webbing and ballistic plates." + icon_state = "comwebvest" + +/obj/item/clothing/suit/armor/pcarrier/blue/sol + name = "peacekeeper plate carrier" + desc = "A lightweight plate carrier vest in SCG Peacekeeper colors. It can be equipped with armor plates, but provides no protection of its own." + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches/blue, /obj/item/clothing/accessory/arm_guards/blue, /obj/item/clothing/accessory/armor_tag/solgov) + +/obj/item/clothing/suit/armor/pcarrier/light/sol + accessories = list(/obj/item/clothing/accessory/armor_plate, /obj/item/clothing/accessory/armor_tag/solgov) + +/obj/item/clothing/suit/armor/pcarrier/medium/sol + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches, /obj/item/clothing/accessory/armor_tag/solgov) + +/obj/item/clothing/suit/armor/pcarrier/medium/security + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches, /obj/item/clothing/accessory/armor_tag/solgov/sec) + +/obj/item/clothing/suit/armor/pcarrier/medium/command + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches, /obj/item/clothing/accessory/armor_tag/solgov/com) + +/obj/item/clothing/suit/armor/pcarrier/medium/command/security + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches, /obj/item/clothing/accessory/armor_tag/solgov/com/sec) diff --git a/packs/faction_solgov/clothing/solgov-feet.dm b/packs/faction_solgov/clothing/solgov-feet.dm new file mode 100644 index 00000000000..e6606bce5e4 --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-feet.dm @@ -0,0 +1,4 @@ +/obj/item/clothing/shoes/dress/white + name = "white dress shoes" + desc = "Brilliantly white low quarters, not a spot on them." + icon_state = "whitedress" \ No newline at end of file diff --git a/packs/faction_solgov/clothing/solgov-hands.dm b/packs/faction_solgov/clothing/solgov-hands.dm new file mode 100644 index 00000000000..5351119ee80 --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-hands.dm @@ -0,0 +1,47 @@ +/obj/item/clothing/gloves/thick/duty/solgov + name = "solgov duty gloves parent object" + desc = "You should never see this." + item_icons = list(slot_gloves_str = 'packs/faction_solgov/icons/mob/onmob_hands_solgov.dmi') + icon = 'packs/faction_solgov/icons/obj/obj_hands_solgov.dmi' + +/obj/item/clothing/gloves/thick/duty/solgov/eng + name = "engineering duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely orange accent color." + icon_state = "duty_gloves_eng" + item_state = "duty_gloves_eng" + +/obj/item/clothing/gloves/thick/duty/solgov/cmd + name = "command duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely gold accent color." + icon_state = "duty_gloves_cmd" + item_state = "duty_gloves_cmd" + +/obj/item/clothing/gloves/thick/duty/solgov/exp + name = "exploration duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely purple accent color." + icon_state = "duty_gloves_exp" + item_state = "duty_gloves_exp" + +/obj/item/clothing/gloves/thick/duty/solgov/med + name = "medical duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely blue accent color." + icon_state = "duty_gloves_med" + item_state = "duty_gloves_med" + +/obj/item/clothing/gloves/thick/duty/solgov/sec + name = "security duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely red accent color." + icon_state = "duty_gloves_sec" + item_state = "duty_gloves_sec" + +/obj/item/clothing/gloves/thick/duty/solgov/svc + name = "service duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely green accent color." + icon_state = "duty_gloves_svc" + item_state = "duty_gloves_svc" + +/obj/item/clothing/gloves/thick/duty/solgov/sup + name = "supply duty gloves" + desc = "These black duty gloves are made from durable synthetic materials, and have a lovely brown accent color." + icon_state = "duty_gloves_sup" + item_state = "duty_gloves_sup" diff --git a/packs/faction_solgov/clothing/solgov-head.dm b/packs/faction_solgov/clothing/solgov-head.dm new file mode 100644 index 00000000000..a9e6056c94c --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-head.dm @@ -0,0 +1,512 @@ +/obj/item/clothing/head/solgov + name = "master solgov hat" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + siemens_coefficient = 0.9 + +//Utility +/obj/item/clothing/head/soft/solgov + name = "\improper Sol Central Government cap" + desc = "It's a ballcap in SCG colors." + icon_state = "solsoft" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + +/obj/item/clothing/head/soft/solgov/veteranhat + name = "veteran hat" + desc = "It's a tacky black ballcap bearing the yellow service ribbon of the Gaia Conflict." + icon_state = "cap_veteran" + +/obj/item/clothing/head/soft/solgov/expedition + name = "\improper Expeditionary Corps cap" + desc = "It's a black ballcap bearing the Expeditonary Corps crest." + icon_state = "expeditionsoft" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_head_unathi.dmi' + ) + +/obj/item/clothing/head/soft/solgov/expedition/co + name = "\improper Expeditionary Corps captain's cap" + desc = "It's a black ballcap bearing the Expeditonary Corps crest. The brim has gold trim." + icon_state = "expeditioncomsoft" + +/obj/item/clothing/head/soft/solgov/fleet + name = "fleet cap" + desc = "It's a navy blue field cap with the SCG Fleet crest in a silver colour." + icon_state = "fleetsoft" + +/obj/item/clothing/head/solgov/utility + name = "utility cover" + desc = "An eight-point utility cover." + icon_state = "greyutility" + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet", + ) + body_parts_covered = 0 + +/obj/item/clothing/head/solgov/utility/fleet + name = "fleet utility cover" + desc = "A navy blue utility cover bearing the crest of the SCG Fleet." + icon_state = "navyutility" + +/obj/item/clothing/head/solgov/utility/army + name = "army utility cover" + desc = "A green utility cover bearing the crest of the SCG Army." + icon_state = "greenutility" + +/obj/item/clothing/head/solgov/utility/army/tan + name = "tan utility cover" + desc = "A tan utility cover bearing the crest of the SCG Army." + icon_state = "tanutility" + +/obj/item/clothing/head/solgov/utility/army/urban + name = "urban utility cover" + desc = "A grey utility cover bearing the crest of the SCG Army." + icon_state = "greyutility" + +//Service + +/obj/item/clothing/head/solgov/service + name = "service cover" + desc = "A service uniform cover." + icon_state = "greenwheelcap" + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet") + body_parts_covered = 0 + +/obj/item/clothing/head/solgov/service/expedition + name = "expeditionary peaked cap" + desc = "A peaked black uniform cap belonging to the SCG Expeditionary Corps." + icon_state = "ecdresscap" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_head_unathi.dmi' + ) + +/obj/item/clothing/head/solgov/service/expedition/command + name = "expeditionary officer's peaked cap" + desc = "A peaked black uniform cap belonging to the SCG Expeditionary Corps. This one is trimmed in gold." + icon_state = "ecdresscap_ofcr" + +/obj/item/clothing/head/solgov/service/expedition/captain + name = "expeditionary captain's peaked cap" + desc = "A gold-trimmed peaked black uniform cap belonging to a Captain of the SCG Expeditionary Corps." + icon_state = "ecdresscap_capt" + +/obj/item/clothing/head/solgov/service/expedition/senior_command + name = "senior expedition officer's peaked cap" + desc = "A peaked grey uniform cap belonging to the SCG Expeditionary Corps. This one is trimmed in gold and blue." + icon_state = "greydresscap_senior" + +/obj/item/clothing/head/solgov/service/army + name = "army wheel cover" + desc = "A green service uniform cover with an SCG Army crest." + icon_state = "greenwheelcap" + +/obj/item/clothing/head/solgov/service/army/command + name = "army officer's wheel cover" + desc = "A green service uniform cover with an SCG Army crest and gold stripe." + icon_state = "greenwheelcap_com" + +/obj/item/clothing/head/solgov/service/army/garrison + name = "army garrison cap" + desc = "A green garrison cap belonging to the SCG Army." + icon_state = "greengarrisoncap" + +/obj/item/clothing/head/solgov/service/army/garrison/command + name = "army officer's garrison cap" + desc = "A green garrison cap belonging to the SCG Army. This one has a gold pin." + icon_state = "greengarrisoncap_com" + +/obj/item/clothing/head/solgov/service/army/campaign + name = "campaign cover" + desc = "A green campaign cover with an SCG Army crest. Only found on the heads of Drill Sergeants." + icon_state = "greendrill" + +//Dress + +/obj/item/clothing/head/solgov/dress + name = "dress cover" + desc = "A dress uniform cover." + icon_state = "greenwheelcap" + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet") + body_parts_covered = 0 + +/obj/item/clothing/head/solgov/dress/fleet/garrison + name = "fleet garrison cap" + desc = "A white dress uniform cap. The classic sailor's choice." + icon_state = "whitegarrisoncap" + +/obj/item/clothing/head/solgov/dress/fleet + name = "fleet dress wheel cover" + desc = "A white dress uniform cover. This one has an SCG Fleet crest." + icon_state = "whitepeakcap" + +/obj/item/clothing/head/solgov/dress/fleet/command + name = "fleet officer's dress wheel cover" + desc = "A white dress uniform cover. This one has a gold stripe and an SCG Fleet crest." + icon_state = "whitepeakcap_com" + +/obj/item/clothing/head/solgov/dress/army + name = "army dress wheel cover" + desc = "A white dress uniform cover with an SCG Army crest." + icon_state = "whitewheelcap" + +/obj/item/clothing/head/solgov/dress/army/command + name = "army officer's dress wheel cover" + desc = "A white dress uniform cover with an SCG Army crest and gold stripe." + icon_state = "whitewheelcap_com" + +//Berets + +/obj/item/clothing/head/beret/solgov + name = "peacekeeper beret" + desc = "A beret in Sol Central Government colors. For peacekeepers that are more inclined towards style than safety." + icon_state = "beret_lightblue" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + +/obj/item/clothing/head/beret/solgov/homeguard + name = "home guard beret" + desc = "A red beret denoting service in the Sol Home Guard. For personnel that are more inclined towards style than safety." + icon_state = "beret_red" + +/obj/item/clothing/head/beret/solgov/gateway + name = "gateway administration beret" + desc = "An orange beret denoting service in the Gateway Administration. For personnel that are more inclined towards style than safety." + icon_state = "beret_orange" + +/obj/item/clothing/head/beret/solgov/customs + name = "customs and trade beret" + desc = "A purple beret denoting service in the Customs and Trade Bureau. For personnel that are more inclined towards style than safety." + icon_state = "beret_purpleyellow" + +/obj/item/clothing/head/beret/solgov/orbital + name = "orbital assault beret" + desc = "A blue beret denoting orbital assault training. For helljumpers that are more inclined towards style than safety." + icon_state = "beret_blue" + +/obj/item/clothing/head/beret/solgov/research + name = "government research beret" + desc = "A green beret denoting service in the Bureau of Research. For scientists that are more inclined towards style than safety." + icon_state = "beret_green" + +/obj/item/clothing/head/beret/solgov/health + name = "health service beret" + desc = "A white beret denoting service in the Interstellar Health Service. For medics that are more inclined towards style than safety." + icon_state = "beret_white" + +/obj/item/clothing/head/beret/solgov/marcom + name = "\improper MARSCOM beret" + desc = "A red beret with a gold insignia, denoting service in the SCGDF Mars Central Command. For brass who are more inclined towards style than safety." + icon_state = "beret_redgold" + +/obj/item/clothing/head/beret/solgov/stratcom + name = "\improper STRATCOM beret" + desc = "A grey beret with a silver insignia, denoting service in the SCGDF Strategic Command. For intelligence personnel who are more inclined towards style than safety." + icon_state = "beret_graysilver" + +/obj/item/clothing/head/beret/solgov/diplomatic + name = "diplomatic security beret" + desc = "A tan beret denoting service in the SCG Army Diplomatic Security Group. For security personnel who are more inclined towards style than safety." + icon_state = "beret_tan" + +/obj/item/clothing/head/beret/solgov/borderguard + name = "border security beret" + desc = "A green beret with a silver emblem, denoting service in the Bureau of Border Security. For border guards who are more inclined towards style than safety." + icon_state = "beret_greensilver" + +/obj/item/clothing/head/beret/solgov/expedition + name = "expeditionary beret" + desc = "A black beret belonging to the SCG Expeditionary Corps. For personnel that are more inclined towards style than safety." + icon_state = "beret_black" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_head_unathi.dmi' + ) + +/obj/item/clothing/head/beret/solgov/expedition/security + name = "expeditionary security beret" + desc = "An SCG Expeditionary Corps beret with a security crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_security" + +/obj/item/clothing/head/beret/solgov/expedition/medical + name = "expeditionary medical beret" + desc = "An SCG Expeditionary Corps beret with a medical crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_medical" + +/obj/item/clothing/head/beret/solgov/expedition/engineering + name = "expeditionary engineering beret" + desc = "An SCG Expeditionary Corps beret with an engineering crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_engineering" + +/obj/item/clothing/head/beret/solgov/expedition/supply + name = "expeditionary supply beret" + desc = "An SCG Expeditionary Corps beret with a supply crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_supply" + +/obj/item/clothing/head/beret/solgov/expedition/service + name = "expeditionary service beret" + desc = "An SCG Expeditionary Corps beret with a service crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_service" + +/obj/item/clothing/head/beret/solgov/expedition/exploration + name = "expeditionary exploration beret" + desc = "An SCG Expeditionary Corps beret with an exploration crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_exploration" + +/obj/item/clothing/head/beret/solgov/expedition/command + name = "expeditionary officer's beret" + desc = "An SCG Expeditionary Corps beret with a golden crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_command" + +/obj/item/clothing/head/beret/solgov/expedition/branch + name = "\improper Field Operations beret" + desc = "An SCG Expeditionary Corps beret carrying insignia of the Field Operations section. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_fieldOps" + +/obj/item/clothing/head/beret/solgov/expedition/branch/observatory + name = "\improper Observatory beret" + desc = "An SCG Expeditionary Corps beret carrying insignia of the Observatory section. For personnel that are more inclined towards style than safety." + icon_state = "beret_black_observatory" + +/obj/item/clothing/head/beret/solgov/fleet + name = "fleet beret" + desc = "A navy blue beret belonging to the SCG Fleet. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy" + +/obj/item/clothing/head/beret/solgov/fleet/security + name = "fleet security beret" + desc = "An SCG Fleet beret with a security crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_security" + +/obj/item/clothing/head/beret/solgov/fleet/medical + name = "fleet medical beret" + desc = "An SCG Fleet beret with a medical crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_medical" + +/obj/item/clothing/head/beret/solgov/fleet/engineering + name = "fleet engineering beret" + desc = "An SCG Fleet with an engineering crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_engineering" + +/obj/item/clothing/head/beret/solgov/fleet/supply + name = "fleet supply beret" + desc = "An SCG Fleet beret with a supply crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_supply" + +/obj/item/clothing/head/beret/solgov/fleet/service + name = "fleet service beret" + desc = "An SCG Fleet beret with a service crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_service" + +/obj/item/clothing/head/beret/solgov/fleet/exploration + name = "fleet exploration beret" + desc = "An SCG Fleet beret with an exploration crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_exploration" + +/obj/item/clothing/head/beret/solgov/fleet/command + name = "fleet officer's beret" + desc = "An SCG Fleet beret with a golden crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_command" + +/obj/item/clothing/head/beret/solgov/fleet/dress + name = "fleet dress beret" + desc = "A white SCG Fleet beret. For personnel that are more inclined towards style than safety." + icon_state = "beret_whiterim" + +/obj/item/clothing/head/beret/solgov/fleet/dress/command + name = "fleet officer's dress beret" + desc = "A white SCG Fleet beret with a golden crest. For personnel that are more inclined towards style than safety." + icon_state = "beret_whiterim_com" + +/obj/item/clothing/head/beret/solgov/fleet/branch + name = "first fleet beret" + desc = "An SCG Fleet beret carrying insignia of First Fleet, the Sol Guard, stationed in Sol. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_first" + +/obj/item/clothing/head/beret/solgov/fleet/branch/second + name = "second fleet beret" + desc = "An SCG Fleet beret carrying insignia of Second Fleet, the Home Guard, tasked with defense of Sol territories. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_second" + +/obj/item/clothing/head/beret/solgov/fleet/branch/third + name = "third fleet beret" + desc = "An SCG Fleet beret carrying insignia of Third Fleet, the Border Guard, guarding borders of Sol territory against Vox and pirates. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_third" + +/obj/item/clothing/head/beret/solgov/fleet/branch/fourth + name = "fourth fleet beret" + desc = "An SCG Fleet beret carrying insignia of Fourth Fleet, stationed on Skrell border. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_fourth" + +/obj/item/clothing/head/beret/solgov/fleet/branch/fifth + name = "fifth fleet beret" + desc = "An SCG Fleet beret carrying insignia of Fifth Fleet, the Quick Reaction Force, recently formed and outfited with last tech. For personnel that are more inclined towards style than safety." + icon_state = "beret_navy_fifth" + +//ushanka + +/obj/item/clothing/head/ushanka/solgov + name = "expeditionary fur hat" + desc = "An SCG Expeditionary Corps synthfur-lined hat for operating in cold environments." + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + icon_state = "ecushankadown" + icon_state_up = "ecushankaup" + +/obj/item/clothing/head/ushanka/solgov/fleet + name = "fleet fur hat" + desc = "An SCG Fleet synthfur-lined hat for operating in cold environments." + icon_state = "flushankadown" + icon_state_up = "flushankaup" + +/obj/item/clothing/head/ushanka/solgov/army + name = "army fur hat" + desc = "An SCG Army synthfur-lined hat for operating in cold environments." + icon_state = "barushankadown" + icon_state_up = "barushankaup" + +/obj/item/clothing/head/ushanka/solgov/army/green + name = "green army fur hat" + desc = "An SCG Army synthfur-lined hat for operating in cold environments." + icon_state = "arushankadown" + icon_state_up = "mcushankaup" + +//helmets and other such trash + +/obj/item/clothing/head/helmet/solgov + accessories = list(/obj/item/clothing/accessory/helmet_cover/blue/sol) + +/obj/item/clothing/head/helmet/solgov/security + name = "security helmet" + desc = "A helmet with 'POLICE' printed on the back in silver lettering." + icon_state = "helmet_security" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + accessories = null + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_head_helmet_unathi.dmi' + ) + +/obj/item/clothing/head/helmet/solgov/command + name = "command helmet" + desc = "A helmet with 'SOL CENTRAL GOVERNMENT' printed on the back in gold lettering." + icon_state = "helmet_command" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + accessories = null + +/obj/item/clothing/head/helmet/solgov/pilot + name = "pilot's helmet" + desc = "A pilot's helmet for operating the cockpit in style. For when you want to protect your noggin AND look stylish." + icon_state = "pilotgov" + accessories = null + +/obj/item/clothing/head/helmet/solgov/pilot/fleet + name = "fleet pilot's helmet" + desc = "A pilot's helmet for operating the cockpit in style. This one is worn by members of the SCG Fleet." + icon_state = "pilotfleet" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + accessories = null + +//SolGov Hardsuits + +/obj/item/clothing/head/helmet/space/void/engineering/alt/sol + light_overlay = "helmet_light_alt" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/mob/skrell/onmob_head_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'maps/torch/icons/obj/unathi/obj_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/obj/skrell/obj_head_solgov_skrell.dmi', + ) + +/obj/item/clothing/head/helmet/space/void/atmos/alt/sol + light_overlay = "helmet_light_alt" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/mob/skrell/onmob_head_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'maps/torch/icons/obj/unathi/obj_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/obj/skrell/obj_head_solgov_skrell.dmi', + ) + +/obj/item/clothing/head/helmet/space/void/pilot/sol + light_overlay = "helmet_light_alt" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/mob/skrell/onmob_head_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'maps/torch/icons/obj/unathi/obj_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/obj/skrell/obj_head_solgov_skrell.dmi', + ) + +/obj/item/clothing/head/helmet/space/void/medical/alt/sol + light_overlay = "helmet_light_green_alt" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/mob/skrell/onmob_head_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'maps/torch/icons/obj/unathi/obj_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/obj/skrell/obj_head_solgov_skrell.dmi', + ) + +/obj/item/clothing/head/helmet/space/void/command + name = "command voidsuit helmet" + desc = "A light, radiation resistant voidsuit helmet commonly used among SCG uniformed services." + icon_state = "rig0_command" + item_state = "command_helm" + light_overlay = "helmet_light_green_alt" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/mob/skrell/onmob_head_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'maps/torch/icons/obj/unathi/obj_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/obj/skrell/obj_head_solgov_skrell.dmi', + ) + +/obj/item/clothing/head/helmet/space/void/exploration + name = "exploration voidsuit helmet" + desc = "A helmet of Exoplanet Exploration Unit, standard issue for Expeditionary Corps away missions. It has an armored glass dome for superiour visibility and extra anti-radiation lining." + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + icon_state = "rig0_explorer" + item_state = "explorer_helm" + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/mob/skrell/onmob_head_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'maps/torch/icons/obj/unathi/obj_head_solgov_unathi.dmi', + SPECIES_SKRELL = 'maps/torch/icons/obj/skrell/obj_head_solgov_skrell.dmi', + ) + armor = list( + melee = ARMOR_MELEE_RESISTANT, + bullet = ARMOR_BALLISTIC_MINOR, + laser = ARMOR_LASER_MINOR, + energy = ARMOR_ENERGY_RESISTANT, + bomb = ARMOR_BOMB_PADDED, + bio = ARMOR_BIO_SHIELDED, + rad = ARMOR_RAD_RESISTANT + ) + light_overlay = "helmet_light_dual_alt" + tinted = FALSE diff --git a/packs/faction_solgov/clothing/solgov-suit.dm b/packs/faction_solgov/clothing/solgov-suit.dm new file mode 100644 index 00000000000..9a3656a1632 --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-suit.dm @@ -0,0 +1,495 @@ +/obj/item/clothing/suit/storage/solgov + name = "master solgov jacket" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + +//Service + +/obj/item/clothing/suit/storage/solgov/service + name = "service jacket" + desc = "A uniform service jacket, plain and undecorated." + icon_state = "blackservice" + body_parts_covered = UPPER_TORSO|ARMS + siemens_coefficient = 0.9 + allowed = list(/obj/item/tank/emergency,/obj/item/device/flashlight,/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll) + valid_accessory_slots = list( + ACCESSORY_SLOT_ARMBAND, + ACCESSORY_SLOT_MEDAL, + ACCESSORY_SLOT_INSIGNIA, + ACCESSORY_SLOT_RANK, + ACCESSORY_SLOT_DEPT, + ACCESSORY_SLOT_DECOR + ) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary + name = "expeditionary jacket" + desc = "A uniform service jacket belonging to the SCG Expeditionary Corps." + icon_state = "ecservice_crew" + + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_suit_unathi.dmi' + ) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/medical + accessories = list(/obj/item/clothing/accessory/solgov/department/medical/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/medical/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/engineering + accessories = list(/obj/item/clothing/accessory/solgov/department/engineering/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/engineering/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/supply + accessories = list(/obj/item/clothing/accessory/solgov/department/supply/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/security + accessories = list(/obj/item/clothing/accessory/solgov/department/security/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/security/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/service + accessories = list(/obj/item/clothing/accessory/solgov/department/service/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/service/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/exploration + accessories = list(/obj/item/clothing/accessory/solgov/department/exploration/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/exploration/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/research + accessories = list(/obj/item/clothing/accessory/solgov/department/research/service) + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/research/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + +/obj/item/clothing/suit/storage/solgov/service/expeditionary/command + icon_state = "ecservice_officer" + item_state = "ecservice_officer" + accessories = list(/obj/item/clothing/accessory/solgov/department/command/service) + +/obj/item/clothing/suit/storage/solgov/service/fleet + name = "fleet service jacket" + desc = "A navy blue SCG Fleet service jacket." + icon_state = "blueservice" + item_state = "blueservice" + +/obj/item/clothing/suit/storage/solgov/service/fleet/snco + name = "fleet SNCO service jacket" + desc = "A navy blue SCG Fleet service jacket with silver cuffs." + icon_state = "blueservice_snco" + item_state = "blueservice_snco" + +/obj/item/clothing/suit/storage/solgov/service/fleet/officer + name = "fleet officer's service jacket" + desc = "A navy blue SCG Fleet dress jacket with silver accents." + icon_state = "blueservice_off" + item_state = "blueservice_off" + +/obj/item/clothing/suit/storage/solgov/service/fleet/command + name = "fleet senior officer's service jacket" + desc = "A navy blue SCG Fleet dress jacket with gold accents." + icon_state = "blueservice_comm" + item_state = "blueservice_comm" + +/obj/item/clothing/suit/storage/solgov/service/fleet/flag + name = "fleet flag officer's service jacket" + desc = "A navy blue SCG Fleet dress jacket with red accents." + icon_state = "blueservice_flag" + item_state = "blueservice_flag" + +/obj/item/clothing/suit/storage/solgov/service/army + name = "army coat" + desc = "An SCG Army service coat. Green and undecorated." + icon_state = "greenservice" + item_state = "greenservice" + +/obj/item/clothing/suit/storage/solgov/service/army/medical + name = "army medical jacket" + desc = "An SCG Army service coat. This one has blue markings." + icon_state = "greenservice_med" + item_state = "greenservice_med" + +/obj/item/clothing/suit/storage/solgov/service/army/medical/command + name = "army medical command jacket" + desc = "An SCG Army service coat. This one has blue and gold markings." + icon_state = "greenservice_medcom" + item_state = "greenservice_medcom" + +/obj/item/clothing/suit/storage/solgov/service/army/engineering + name = "army engineering jacket" + desc = "An SCG Army service coat. This one has orange markings." + icon_state = "greenservice_eng" + item_state = "greenservice_eng" + +/obj/item/clothing/suit/storage/solgov/service/army/engineering/command + name = "army engineering command jacket" + desc = "An SCG Army service coat. This one has orange and gold markings." + icon_state = "greenservice_engcom" + item_state = "greenservice_engcom" + +/obj/item/clothing/suit/storage/solgov/service/army/supply + name = "army supply jacket" + desc = "An SCG Army service coat. This one has brown markings." + icon_state = "greenservice_sup" + item_state = "greenservice_sup" + +/obj/item/clothing/suit/storage/solgov/service/army/security + name = "army security jacket" + desc = "An SCG Army service coat. This one has red markings." + icon_state = "greenservice_sec" + item_state = "greenservice_sec" + +/obj/item/clothing/suit/storage/solgov/service/army/security/command + name = "army security command jacket" + desc = "An SCG Army service coat. This one has red and gold markings." + icon_state = "greenservice_seccom" + item_state = "greenservice_seccom" + +/obj/item/clothing/suit/storage/solgov/service/army/service + name = "army service jacket" + desc = "An SCG Army service coat. This one has green markings." + icon_state = "greenservice_srv" + item_state = "greenservice_srv" + +/obj/item/clothing/suit/storage/solgov/service/army/service/command + name = "army service command jacket" + desc = "An SCG Army service coat. This one has green and gold markings." + icon_state = "greenservice_srvcom" + item_state = "greenservice_srvcom" + +/obj/item/clothing/suit/storage/solgov/service/army/exploration + name = "army exploration jacket" + desc = "An SCG Army service coat. This one has purple markings." + icon_state = "greenservice_exp" + item_state = "greenservice_exp" + +/obj/item/clothing/suit/storage/solgov/service/army/exploration/command + name = "army exploration command jacket" + desc = "An SCG Army service coat. This one has purple and gold markings." + icon_state = "greenservice_expcom" + item_state = "greenservice_expcom" + +/obj/item/clothing/suit/storage/solgov/service/army/command + name = "army command jacket" + desc = "An SCG Marine Corps service coat. This one has gold markings." + icon_state = "greenservice_com" + item_state = "greenservice_com" + +//Dress - murder me with a gun why are these 3 different types + +/obj/item/clothing/suit/storage/solgov/dress + name = "dress jacket" + desc = "A uniform dress jacket, plain and undecorated." + icon_state = "ecdress_xpl" + item_state = "ecdress_xpl" + body_parts_covered = UPPER_TORSO|ARMS + siemens_coefficient = 0.9 + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_INSIGNIA) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +/obj/item/clothing/suit/storage/solgov/dress/expedition + name = "expeditionary dress coat" + desc = "A silver and black dress peacoat belonging to the SCG Expeditionary Corps. Fashionable, for the 25th century at least." + icon_state = "ecdress_xpl" + item_state = "ecdress_xpl" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_suit_unathi.dmi' + ) + +/obj/item/clothing/suit/storage/solgov/dress/expedition/senior + name = "expeditionary senior's dress coat" + icon_state = "ecdress_sxpl" + item_state = "ecdress_sxpl" + +/obj/item/clothing/suit/storage/solgov/dress/expedition/chief + name = "expeditionary chief's dress coat" + icon_state = "ecdress_cxpl" + item_state = "ecdress_cxpl" + +/obj/item/clothing/suit/storage/solgov/dress/expedition/command + name = "expeditionary officer's dress coat" + desc = "A gold and black dress peacoat belonging to the SCG Expeditionary Corps. The height of fashion." + icon_state = "ecdress_ofcr" + item_state = "ecdress_ofcr" + +/obj/item/clothing/suit/storage/solgov/dress/expedition/command/cdr + name = "expeditionary commander's dress coat" + icon_state = "ecdress_cdr" + item_state = "ecdress_cdr" + +/obj/item/clothing/suit/storage/solgov/dress/expedition/command/capt + name = "expeditionary captain's dress coat" + icon_state = "ecdress_capt" + item_state = "ecdress_capt" + +/obj/item/clothing/suit/storage/solgov/dress/expedition/command/adm + name = "expeditionary admiral's dress coat" + icon_state = "ecdress_adm" + item_state = "ecdress_adm" + +/obj/item/clothing/suit/storage/solgov/dress/fleet + name = "fleet dress jacket" + desc = "A navy blue SCG Fleet dress jacket. Don't get near pasta sauce or vox." + icon_state = "whitedress" + item_state = "whitedress" + +/obj/item/clothing/suit/storage/solgov/dress/fleet/snco + name = "fleet dress SNCO jacket" + desc = "A navy blue SCG Fleet dress jacket with silver cuffs. Don't get near pasta sauce or vox." + icon_state = "whitedress_snco" + item_state = "whitedress_snco" + +/obj/item/clothing/suit/storage/solgov/dress/fleet/officer + name = "fleet officer's dress jacket" + desc = "A navy blue SCG Fleet dress jacket with silver accents. Don't get near pasta sauce or vox." + icon_state = "whitedress_off" + item_state = "whitedress_off" + +/obj/item/clothing/suit/storage/solgov/dress/fleet/command + name = "fleet senior officer's dress jacket" + desc = "A navy blue SCG Fleet dress jacket with gold accents. Don't get near pasta sauce or vox." + icon_state = "whitedress_comm" + item_state = "whitedress_comm" + +/obj/item/clothing/suit/storage/solgov/dress/fleet/flag + name = "fleet flag officer's dress jacket" + desc = "A navy blue SCG Fleet dress jacket with red accents. Don't get near pasta sauce or vox." + icon_state = "whitedress_flag" + item_state = "whitedress_flag" + +/obj/item/clothing/suit/dress/solgov + name = "dress jacket" + desc = "A uniform dress jacket, fancy." + icon_state = "blackdress" + item_state = "blackdress" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + body_parts_covered = UPPER_TORSO|ARMS + siemens_coefficient = 0.9 + allowed = list(/obj/item/tank/emergency,/obj/item/device/flashlight,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/device/radio,/obj/item/pen) + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_RANK,ACCESSORY_SLOT_INSIGNIA) + +/obj/item/clothing/suit/dress/solgov/fleet/sailor + name = "fleet dress overwear" + desc = "A navy blue SCG Fleet dress suit. Almost looks like a school-girl outfit." + icon_state = "sailordress" + item_state = "sailordress" + +/obj/item/clothing/suit/dress/solgov/army + name = "army dress jacket" + desc = "A tailored black SCG Army dress jacket with red trim. So sexy it hurts." + icon_state = "blackdress" + item_state = "blackdress" + +/obj/item/clothing/suit/dress/solgov/army/command + name = "army officer's dress jacket" + desc = "A tailored black SCG Army dress jacket with gold trim. Smells like ceremony." + icon_state = "blackdress_com" + item_state = "blackdress_com" + +//Misc + +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov + name = "expeditionary winter coat" + icon_state = "coatec" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK) + +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/army + name = "army winter coat" + icon_state = "coatar" + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK) + +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/fleet + name = "fleet winter coat" + icon_state = "coatfl" + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA) + +/obj/item/clothing/suit/storage/jacket/solgov/fleet + name = "fleet engineering jacket" + desc = "A jacket commonly issued by the fleet to its engineers. It sports some yellow reflective stripes, and has elbow pads." + icon_state = "navyengjacket" + item_state = "navyengjacket" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA,ACCESSORY_SLOT_RANK) + allowed = list (/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll,/obj/item/device/scanner/gas, /obj/item/device/flashlight, /obj/item/device/multitool, /obj/item/device/radio, /obj/item/device/t_scanner, \ + /obj/item/crowbar, /obj/item/screwdriver, /obj/item/weldingtool, /obj/item/wirecutters, /obj/item/wrench, /obj/item/tank/emergency, \ + /obj/item/clothing/mask/gas, /obj/item/taperoll/engineering,/obj/item/clothing/head/hardhat) + +/obj/item/clothing/suit/storage/jacket/solgov/fleet/medical + name = "fleet jacket" + desc = "A jacket commonly issued by the fleet to its medical staff. It sports some discrete blue markings, and has thin elbow pads." + icon_state = "navymedjacket" + item_state = "navymedjacket" + allowed = list (/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll,/obj/item/stack/medical, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/hypospray, /obj/item/reagent_containers/syringe, \ + /obj/item/device/scanner/health, /obj/item/device/flashlight, /obj/item/device/radio, /obj/item/clothing/head/hardhat, /obj/item/tank/emergency, /obj/item/reagent_containers/ivbag + ) + +/obj/item/clothing/suit/storage/jacket/solgov/fleet/security + name = "fleet jacket" + desc = "A jacket commonly issued by the fleet to its security staff. It sports some discrete red markings, and has elbow pads." + icon_state = "navysecjacket" + item_state = "navysecjacket" + allowed = list (/obj/item/tank/emergency,/obj/item/device/flashlight,/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll,/obj/item/gun/energy,/obj/item/device/radio,/obj/item/reagent_containers/spray/pepper,/obj/item/gun/projectile,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/melee/baton,/obj/item/handcuffs,/obj/item/gun/magnetic,/obj/item/clothing/head/helmet + ) + +/obj/item/clothing/suit/storage/jacket/solgov/fleet/service + name = "fleet jacket" + desc = "A jacket commonly issued by the fleet to its service staff. It sports some discrete green markings." + icon_state = "navysrvjacket" + item_state = "navysrvjacket" + allowed = list (/obj/item/tank/emergency,/obj/item/device/flashlight,/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll + ) + +/obj/item/clothing/suit/storage/jacket/solgov/fleet/supply + name = "fleet jacket" + desc = "A jacket commonly issued by the fleet to its deck staff. It sports some discrete brown markings, and has elbow pads." + icon_state = "navysupjacket" + item_state = "navysupjacket" + allowed = list (/obj/item/tank/emergency,/obj/item/device/flashlight,/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll + ) + +/obj/item/clothing/suit/storage/jacket/solgov/fleet/command + name = "fleet jacket" + desc = "A jacket commonly issued by the fleet to its command staff. It sports some gold markings." + icon_state = "navycomjacket" + item_state = "navycomjacket" + allowed = list (/obj/item/tank/emergency,/obj/item/device/flashlight,/obj/item/pen,/obj/item/clothing/head/soft,/obj/item/clothing/head/beret,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder,/obj/item/device/scanner/gas,/obj/item/device/radio,/obj/item/taperoll + ) + +//SolGov Hardsuits + +/obj/item/clothing/suit/space/void/engineering/alt/sol + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi', + ) + +/obj/item/clothing/suit/space/void/engineering/alt/sol/prepared + helmet = /obj/item/clothing/head/helmet/space/void/engineering/alt/sol + boots = /obj/item/clothing/shoes/magboots + +/obj/item/clothing/suit/space/void/atmos/alt/sol + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi', + ) + +/obj/item/clothing/suit/space/void/atmos/alt/sol/prepared + helmet = /obj/item/clothing/head/helmet/space/void/atmos/alt/sol + boots = /obj/item/clothing/shoes/magboots + +/obj/item/clothing/suit/space/void/pilot/sol + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi', + ) + +/obj/item/clothing/suit/space/void/pilot/sol/prepared + helmet = /obj/item/clothing/head/helmet/space/void/pilot/sol + boots = /obj/item/clothing/shoes/magboots + +/obj/item/clothing/suit/space/void/medical/alt/sol + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi', + ) + +/obj/item/clothing/suit/space/void/medical/alt/sol/prepared + helmet = /obj/item/clothing/head/helmet/space/void/medical/alt/sol + boots = /obj/item/clothing/shoes/magboots + +/obj/item/clothing/suit/space/void/command + name = "command voidsuit" + desc = "A light, radiation resistant voidsuit commonly used among SCG uniformed services. This one has an EC seal on its chest plate and command department markings." + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + icon_state = "rig_command" + item_state = "rig_command" + sprite_sheets = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi', + ) + allowed = list(/obj/item/device/flashlight,/obj/item/tank,/obj/item/device/suit_cooling_unit,/obj/item/storage/briefcase/inflatable) + +/obj/item/clothing/suit/space/void/command/New() + ..() + slowdown_per_slot[slot_wear_suit] = 0 + +/obj/item/clothing/suit/space/void/command/prepared + helmet = /obj/item/clothing/head/helmet/space/void/command + boots = /obj/item/clothing/shoes/magboots + +/obj/item/clothing/suit/space/void/exploration + name = "exploration voidsuit" + icon = 'packs/faction_solgov/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi') + desc = "The bulky Exoplanet Exploration Unit is a standard voidsuit for Expeditionary Corps field operations. It features extra padding and respectable radiation-resistant lining." + icon_state = "rig_explorer" + item_state = "rig_explorer" + sprite_sheets = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi', + ) + sprite_sheets_obj = list( + SPECIES_UNATHI = 'packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi', + SPECIES_SKRELL = 'packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi', + ) + armor = list( + melee = ARMOR_MELEE_RESISTANT, + bullet = ARMOR_BALLISTIC_MINOR, + laser = ARMOR_LASER_MINOR, + energy = ARMOR_ENERGY_RESISTANT, + bomb = ARMOR_BOMB_PADDED, + bio = ARMOR_BIO_SHIELDED, + rad = ARMOR_RAD_RESISTANT + ) + allowed = list(/obj/item/device/flashlight,/obj/item/tank,/obj/item/device/suit_cooling_unit,/obj/item/stack/flag,/obj/item/device/scanner/health,/obj/item/device/gps,/obj/item/pinpointer/radio,/obj/item/material/hatchet/machete,/obj/item/shovel) + +/obj/item/clothing/suit/space/void/exploration/prepared + helmet = /obj/item/clothing/head/helmet/space/void/exploration + boots = /obj/item/clothing/shoes/magboots diff --git a/packs/faction_solgov/clothing/solgov-under.dm b/packs/faction_solgov/clothing/solgov-under.dm new file mode 100644 index 00000000000..ed5c0871975 --- /dev/null +++ b/packs/faction_solgov/clothing/solgov-under.dm @@ -0,0 +1,446 @@ +/obj/item/clothing/under/solgov + name = "master solgov uniform" + desc = "You shouldn't be seeing this." + icon = 'packs/faction_solgov/icons/obj/obj_under_solgov.dmi' + item_icons = list(slot_w_uniform_str = 'packs/faction_solgov/icons/mob/onmob_under_solgov.dmi') + siemens_coefficient = 0.8 + gender_icons = 1 + +//PT +/obj/item/clothing/under/solgov/pt + name = "pt uniform" + desc = "Shorts! Shirt! Miami! Sexy!" + icon_state = "miami" + worn_state = "miami" + body_parts_covered = UPPER_TORSO|LOWER_TORSO + +/obj/item/clothing/under/solgov/pt/expeditionary + name = "expeditionary pt uniform" + desc = "A baggy shirt bearing the seal of the SCG Expeditionary Corps and some dorky looking blue shorts." + icon_state = "expeditionpt" + worn_state = "expeditionpt" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_under_unathi.dmi' + ) + +/obj/item/clothing/under/solgov/pt/fleet + name = "fleet pt uniform" + desc = "A tight-fitting navy blue shirt paired with black shorts. For when you need to 'get physical'." + icon_state = "fleetpt" + worn_state = "fleetpt" + +/obj/item/clothing/under/solgov/pt/army + name = "army pt uniform" + desc = "Does NOT leave much to the imagination." + icon_state = "armypt" + worn_state = "armypt" + + +//Utility + +/obj/item/clothing/under/solgov/utility + name = "utility uniform" + desc = "A comfortable turtleneck and black utility trousers." + icon_state = "blackutility" + item_state = "bl_suit" + worn_state = "blackutility" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_under_unathi.dmi' + ) + armor = list( + melee = ARMOR_MELEE_MINOR, + energy = ARMOR_ENERGY_MINOR + ) + +/obj/item/clothing/under/solgov/utility/expeditionary + name = "expeditionary uniform" + desc = "The utility uniform of the SCG Expeditionary Corps, made from biohazard resistant material. This one has silver trim." + icon_state = "blackutility_crew" + worn_state = "blackutility_crew" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_under_unathi.dmi' + ) + +/obj/item/clothing/under/solgov/utility/expeditionary_skirt + name = "expeditionary skirt" + desc = "A black turtleneck and skirt, the elusive ladies' uniform of the Expeditionary Corps." + icon_state = "blackservicefem" + worn_state = "blackservicefem" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_under_unathi.dmi' + ) + +/obj/item/clothing/under/solgov/utility/expeditionary_skirt/officer + name = "expeditionary officer skirt" + desc = "A black turtleneck and skirt, the elusive ladies' uniform of the Expeditionary Corps. This one has gold trim." + icon_state = "blackservicefem_com" + worn_state = "blackservicefem_com" + +/obj/item/clothing/under/solgov/utility/expeditionary/command + accessories = list(/obj/item/clothing/accessory/solgov/department/command) + +/obj/item/clothing/under/solgov/utility/expeditionary/engineering + accessories = list(/obj/item/clothing/accessory/solgov/department/engineering) + +/obj/item/clothing/under/solgov/utility/expeditionary/security + accessories = list(/obj/item/clothing/accessory/solgov/department/security) + +/obj/item/clothing/under/solgov/utility/expeditionary/medical + accessories = list(/obj/item/clothing/accessory/solgov/department/medical) + +/obj/item/clothing/under/solgov/utility/expeditionary/supply + accessories = list(/obj/item/clothing/accessory/solgov/department/supply) + +/obj/item/clothing/under/solgov/utility/expeditionary/service + accessories = list(/obj/item/clothing/accessory/solgov/department/service) + +/obj/item/clothing/under/solgov/utility/expeditionary/exploration + accessories = list(/obj/item/clothing/accessory/solgov/department/exploration) + +/obj/item/clothing/under/solgov/utility/expeditionary/research + accessories = list(/obj/item/clothing/accessory/solgov/department/research) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer + name = "expeditionary officer's uniform" + desc = "The utility uniform of the SCG Expeditionary Corps, made from biohazard resistant material. This one has gold trim." + icon_state = "blackutility_com" + worn_state = "blackutility_com" + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/command + accessories = list(/obj/item/clothing/accessory/solgov/department/command) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/engineering + accessories = list(/obj/item/clothing/accessory/solgov/department/engineering) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/security + accessories = list(/obj/item/clothing/accessory/solgov/department/security) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/medical + accessories = list(/obj/item/clothing/accessory/solgov/department/medical) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/supply + accessories = list(/obj/item/clothing/accessory/solgov/department/supply) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/service + accessories = list(/obj/item/clothing/accessory/solgov/department/service) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/exploration + accessories = list(/obj/item/clothing/accessory/solgov/department/exploration) + +/obj/item/clothing/under/solgov/utility/expeditionary/officer/research + accessories = list(/obj/item/clothing/accessory/solgov/department/research) + +/obj/item/clothing/under/solgov/utility/fleet + name = "fleet coveralls" + desc = "The utility uniform of the SCG Fleet, made from an insulated material." + icon_state = "navyutility" + item_state = "jensensuit" + worn_state = "navyutility" + +/obj/item/clothing/under/solgov/utility/fleet/command + accessories = list(/obj/item/clothing/accessory/solgov/department/command/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/command/pilot + accessories = list(/obj/item/clothing/accessory/solgov/specialty/pilot) + +/obj/item/clothing/under/solgov/utility/fleet/engineering + accessories = list(/obj/item/clothing/accessory/solgov/department/engineering/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/security + accessories = list(/obj/item/clothing/accessory/solgov/department/security/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/medical + accessories = list(/obj/item/clothing/accessory/solgov/department/medical/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/supply + accessories = list(/obj/item/clothing/accessory/solgov/department/supply/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/service + accessories = list(/obj/item/clothing/accessory/solgov/department/service/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/exploration + accessories = list(/obj/item/clothing/accessory/solgov/department/exploration/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/polopants + name = "fleet polo and pants" + desc = "An alternative utility uniform of the SCG Fleet, specially designed for engineering staff. The pants sports some yellow reflective stripes, and have knee pads." + icon_state = "navypolopants" + worn_state = "navypolopants" + +/obj/item/clothing/under/solgov/utility/fleet/polopants/command + desc = "An alternative utility uniform of the SCG Fleet. The pants have knee pads." + icon_state = "navypolopantsnostripe" + worn_state = "navypolopantscom" + +/obj/item/clothing/under/solgov/utility/fleet/polopants/security + desc = "An alternative utility uniform of the SCG Fleet. The pants have knee pads." + icon_state = "navypolopantsnostripe" + worn_state = "navypolopantssec" + +/obj/item/clothing/under/solgov/utility/fleet/polopants/medical + desc = "An alternative utility uniform of the SCG Fleet, specially designed for medics and doctors. The pants have knee pads." + icon_state = "navypolopantsnostripe" + worn_state = "navypolopantsmed" + +/obj/item/clothing/under/solgov/utility/fleet/polopants/supply + desc = "An alternative utility uniform of the SCG Fleet. The pants have knee pads." + icon_state = "navypolopantsnostripe" + worn_state = "navypolopantssup" + +/obj/item/clothing/under/solgov/utility/fleet/polopants/service + desc = "An alternative utility uniform of the SCG Fleet. The pants have knee pads." + icon_state = "navypolopantsnostripe" + worn_state = "navypolopantssrv" + +/obj/item/clothing/under/solgov/utility/fleet/combat + name = "fleet fatigues" + desc = "Alternative utility uniform of the SCG Fleet, for when coveralls are impractical." + icon_state = "navycombat" + worn_state = "navycombat" + +/obj/item/clothing/under/solgov/utility/fleet/combat/security + accessories = list(/obj/item/clothing/accessory/solgov/department/security/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/combat/medical + accessories = list(/obj/item/clothing/accessory/solgov/department/medical/fleet, /obj/item/clothing/accessory/armband/medblue) + +/obj/item/clothing/under/solgov/utility/fleet/combat/command + accessories = list(/obj/item/clothing/accessory/solgov/department/command/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/combat/exploration + accessories = list(/obj/item/clothing/accessory/solgov/department/exploration/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/combat/engineering + accessories = list(/obj/item/clothing/accessory/solgov/department/engineering/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/combat/service + accessories = list(/obj/item/clothing/accessory/solgov/department/service/fleet) + +/obj/item/clothing/under/solgov/utility/fleet/combat/supply + accessories = list(/obj/item/clothing/accessory/solgov/department/supply/fleet) + +/obj/item/clothing/under/solgov/utility/army + name = "army fatigues" + desc = "The utility uniform of the SCG Army, made from durable material." + icon_state = "greenutility" + item_state = "jensensuit" + worn_state = "greenutility" + +/obj/item/clothing/under/solgov/utility/army/command + accessories = list(/obj/item/clothing/accessory/solgov/department/command/army) + +/obj/item/clothing/under/solgov/utility/army/engineering + accessories = list(/obj/item/clothing/accessory/solgov/department/engineering/army) + +/obj/item/clothing/under/solgov/utility/army/security + accessories = list(/obj/item/clothing/accessory/solgov/department/security/army) + +/obj/item/clothing/under/solgov/utility/army/medical + accessories = list(/obj/item/clothing/accessory/solgov/department/medical/army) + +/obj/item/clothing/under/solgov/utility/army/medical/banded + accessories = list(/obj/item/clothing/accessory/solgov/department/medical/army, /obj/item/clothing/accessory/armband/medblue) + +/obj/item/clothing/under/solgov/utility/army/supply + accessories = list(/obj/item/clothing/accessory/solgov/department/supply/army) + +/obj/item/clothing/under/solgov/utility/army/service + accessories = list(/obj/item/clothing/accessory/solgov/department/service/army) + +/obj/item/clothing/under/solgov/utility/army/exploration + accessories = list(/obj/item/clothing/accessory/solgov/department/exploration/army) + +/obj/item/clothing/under/solgov/utility/army/urban + name = "urban fatigues" + desc = "An urban version of the SCG Army utility uniform, made from durable material." + icon_state = "greyutility" + item_state = "gy_suit" + worn_state = "greyutility" + +/obj/item/clothing/under/solgov/utility/army/tan + name = "tan fatigues" + desc = "A tan version of the SCG Army utility uniform, made from durable material." + icon_state = "tanutility" + item_state = "johnny" + worn_state = "tanutility" + +//Service + +/obj/item/clothing/under/solgov/service + name = "service uniform" + desc = "A service uniform of some kind." + icon_state = "whiteservice" + worn_state = "whiteservice" + siemens_coefficient = 0.9 + +/obj/item/clothing/under/solgov/service/fleet + name = "fleet service uniform" + desc = "The service uniform of the SCG Fleet, made from immaculate white fabric." + icon_state = "whiteservice" + item_state = "nursesuit" + worn_state = "whiteservice" + accessories = list(/obj/item/clothing/accessory/navy) + +/obj/item/clothing/under/solgov/service/fleet/skirt + name = "fleet service skirt" + desc = "The service uniform skirt of the SCG Fleet, made from immaculate white fabric." + icon_state = "whiteservicefem" + worn_state = "whiteservicefem" + +/obj/item/clothing/under/solgov/service/army + name = "army service uniform" + desc = "The service uniform of the SCG Army. Slimming." + icon_state = "greenservice" + item_state = "johnny" + worn_state = "greenservice" + accessories = list(/obj/item/clothing/accessory/brown) + +/obj/item/clothing/under/solgov/service/army/skirt + name = "army service skirt" + desc = "The service uniform skirt of the SCG Army. Slimming." + icon_state = "greenservicefem" + worn_state = "greenservicefem" + +/obj/item/clothing/under/solgov/service/army/command + name = "marine officer's service uniform" + desc = "The service uniform of the SCG Army. Slimming and stylish." + icon_state = "greenservice_com" + item_state = "johnny" + worn_state = "greenservice_com" + accessories = list(/obj/item/clothing/accessory/brown) + +/obj/item/clothing/under/solgov/service/army/command/skirt + name = "marine officer's service skirt" + desc = "The service uniform skirt of the SCG Army. Slimming and stylish." + icon_state = "greenservicefem_com" + worn_state = "greenservicefem_com" + +//Dress +/obj/item/clothing/under/solgov/mildress + name = "dress uniform" + desc = "A dress uniform of some kind." + icon_state = "greydress" + worn_state = "greydress" + siemens_coefficient = 0.9 + +/obj/item/clothing/under/solgov/mildress/army + name = "army dress uniform" + desc = "The dress uniform of the SCG Army, class given form." + icon_state = "blackdress" + worn_state = "blackdress" + +/obj/item/clothing/under/solgov/mildress/army/skirt + name = "army dress skirt" + desc = "A feminine version of the SCG Army dress uniform, class given form." + icon_state = "blackdressfem" + worn_state = "blackdressfem" + +/obj/item/clothing/under/solgov/mildress/army/command + name = "army officer's dress uniform" + desc = "The dress uniform of the SCG Army, even classier in gold." + icon_state = "blackdress" + worn_state = "blackdress_com" + +/obj/item/clothing/under/solgov/mildress/army/command/skirt + name = "army officer's dress skirt" + desc = "A feminine version of the SCG Army dress uniform, even classier in gold." + icon_state = "blackdressfem" + worn_state = "blackdressfem_com" + +//dress + +/obj/item/clothing/under/solgov/dress/expeditionary + name = "expeditionary dress uniform" + desc = "The dress uniform of the SCG Expeditionary Corps in silver trim." + icon_state = "greydress" + worn_state = "greydress" + sprite_sheets = list( + SPECIES_UNATHI = 'icons/mob/species/unathi/onmob_under_unathi.dmi' + ) + +/obj/item/clothing/under/solgov/dress/expeditionary/engineering + +/obj/item/clothing/under/solgov/dress/expeditionary/security + +/obj/item/clothing/under/solgov/dress/expeditionary/medical + +/obj/item/clothing/under/solgov/dress/expeditionary/supply + +/obj/item/clothing/under/solgov/dress/expeditionary/service + +/obj/item/clothing/under/solgov/dress/expeditionary/exploration + +/obj/item/clothing/under/solgov/dress/expeditionary/research + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt + name = "expeditionary dress skirt" + desc = "A feminine version of the SCG Expeditionary Corps dress uniform in silver trim." + icon_state = "greydressfem" + worn_state = "greydressfem" + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/engineering + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/security + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/medical + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/supply + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/service + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/exploration + +/obj/item/clothing/under/solgov/dress/expeditionary/skirt/research + +/obj/item/clothing/under/solgov/dress/expeditionary/command + name = "expeditionary officer's dress uniform" + desc = "The dress uniform of the SCG Expeditionary Corps in gold trim." + icon_state = "greydress_com" + worn_state = "greydress_com" + +/obj/item/clothing/under/solgov/dress/expeditionary/command/engineering + +/obj/item/clothing/under/solgov/dress/expeditionary/command/security + +/obj/item/clothing/under/solgov/dress/expeditionary/command/medical + +/obj/item/clothing/under/solgov/dress/expeditionary/command/supply + +/obj/item/clothing/under/solgov/dress/expeditionary/command/service + +/obj/item/clothing/under/solgov/dress/expeditionary/command/exploration + +/obj/item/clothing/under/solgov/dress/expeditionary/command/research + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt + name = "expeditionary officer's dress skirt" + desc = "A feminine version of the SCG Expeditionary Corps dress uniform in gold trim." + icon_state = "greydressfem_com" + worn_state = "greydressfem_com" + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/engineering + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/security + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/medical + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/supply + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/service + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/exploration + +/obj/item/clothing/under/solgov/dress/expeditionary/command/skirt/research + +//misc garbage +/obj/item/clothing/under/rank/internalaffairs/plain/solgov + desc = "A plain shirt and pair of pressed black pants." + name = "formal outfit" + accessories = list(/obj/item/clothing/accessory/blue_clip) + +/obj/item/clothing/under/solgov/utility/expeditionary/monkey + name = "adjusted expeditionary uniform" + desc = "The utility uniform of the SCG Expeditionary Corps, made from biohazard resistant material. This one has silver trim. It was also mangled to fit a monkey. This better be worth the NJP you'll get for making it." + species_restricted = list(SPECIES_MONKEY) + sprite_sheets = list("Monkey" = 'icons/mob/species/monkey/onmob_under_monkey.dmi') + accessories = list(/obj/item/clothing/accessory/solgov/rank/fleet/officer/wo1_monkey) diff --git a/packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi b/packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi new file mode 100644 index 00000000000..d4c2cb2558f Binary files /dev/null and b/packs/faction_solgov/icons/mob/onmob_accessories_solgov.dmi differ diff --git a/packs/faction_solgov/icons/mob/onmob_feet_solgov.dmi b/packs/faction_solgov/icons/mob/onmob_feet_solgov.dmi new file mode 100644 index 00000000000..f154a92f0cb Binary files /dev/null and b/packs/faction_solgov/icons/mob/onmob_feet_solgov.dmi differ diff --git a/packs/faction_solgov/icons/mob/onmob_hands_solgov.dmi b/packs/faction_solgov/icons/mob/onmob_hands_solgov.dmi new file mode 100644 index 00000000000..ed8d2a16a0a Binary files /dev/null and b/packs/faction_solgov/icons/mob/onmob_hands_solgov.dmi differ diff --git a/packs/faction_solgov/icons/mob/onmob_head_solgov.dmi b/packs/faction_solgov/icons/mob/onmob_head_solgov.dmi new file mode 100644 index 00000000000..2ad4ac8c614 Binary files /dev/null and b/packs/faction_solgov/icons/mob/onmob_head_solgov.dmi differ diff --git a/packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi b/packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi new file mode 100644 index 00000000000..8c10dcef066 Binary files /dev/null and b/packs/faction_solgov/icons/mob/onmob_suit_solgov.dmi differ diff --git a/packs/faction_solgov/icons/mob/onmob_under_solgov.dmi b/packs/faction_solgov/icons/mob/onmob_under_solgov.dmi new file mode 100644 index 00000000000..af7d2a2969c Binary files /dev/null and b/packs/faction_solgov/icons/mob/onmob_under_solgov.dmi differ diff --git a/packs/faction_solgov/icons/mob/skrell/onmob_head_solgov_skrell.dmi b/packs/faction_solgov/icons/mob/skrell/onmob_head_solgov_skrell.dmi new file mode 100644 index 00000000000..3941b7d604d Binary files /dev/null and b/packs/faction_solgov/icons/mob/skrell/onmob_head_solgov_skrell.dmi differ diff --git a/packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi b/packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi new file mode 100644 index 00000000000..e99ded57600 Binary files /dev/null and b/packs/faction_solgov/icons/mob/skrell/onmob_suit_solgov_skrell.dmi differ diff --git a/packs/faction_solgov/icons/mob/unathi/onmob_head_solgov_unathi.dmi b/packs/faction_solgov/icons/mob/unathi/onmob_head_solgov_unathi.dmi new file mode 100644 index 00000000000..238e87b69d3 Binary files /dev/null and b/packs/faction_solgov/icons/mob/unathi/onmob_head_solgov_unathi.dmi differ diff --git a/packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi b/packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi new file mode 100644 index 00000000000..b46e490c6e5 Binary files /dev/null and b/packs/faction_solgov/icons/mob/unathi/onmob_suit_solgov_unathi.dmi differ diff --git a/packs/faction_solgov/icons/obj/explshotgun.dmi b/packs/faction_solgov/icons/obj/explshotgun.dmi new file mode 100644 index 00000000000..59aebdfe972 Binary files /dev/null and b/packs/faction_solgov/icons/obj/explshotgun.dmi differ diff --git a/packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi b/packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi new file mode 100644 index 00000000000..e80b2b92789 Binary files /dev/null and b/packs/faction_solgov/icons/obj/obj_accessories_solgov.dmi differ diff --git a/packs/faction_solgov/icons/obj/obj_feet_solgov.dmi b/packs/faction_solgov/icons/obj/obj_feet_solgov.dmi new file mode 100644 index 00000000000..e5fe8ec6f41 Binary files /dev/null and b/packs/faction_solgov/icons/obj/obj_feet_solgov.dmi differ diff --git a/packs/faction_solgov/icons/obj/obj_hands_solgov.dmi b/packs/faction_solgov/icons/obj/obj_hands_solgov.dmi new file mode 100644 index 00000000000..2d55f1b96bf Binary files /dev/null and b/packs/faction_solgov/icons/obj/obj_hands_solgov.dmi differ diff --git a/packs/faction_solgov/icons/obj/obj_head_solgov.dmi b/packs/faction_solgov/icons/obj/obj_head_solgov.dmi new file mode 100644 index 00000000000..125b062b5e8 Binary files /dev/null and b/packs/faction_solgov/icons/obj/obj_head_solgov.dmi differ diff --git a/packs/faction_solgov/icons/obj/obj_suit_solgov.dmi b/packs/faction_solgov/icons/obj/obj_suit_solgov.dmi new file mode 100644 index 00000000000..150e297712f Binary files /dev/null and b/packs/faction_solgov/icons/obj/obj_suit_solgov.dmi differ diff --git a/packs/faction_solgov/icons/obj/obj_under_solgov.dmi b/packs/faction_solgov/icons/obj/obj_under_solgov.dmi new file mode 100644 index 00000000000..37abdf7c739 Binary files /dev/null and b/packs/faction_solgov/icons/obj/obj_under_solgov.dmi differ diff --git a/packs/faction_solgov/icons/obj/skrell/obj_head_solgov_skrell.dmi b/packs/faction_solgov/icons/obj/skrell/obj_head_solgov_skrell.dmi new file mode 100644 index 00000000000..71b77ea2e13 Binary files /dev/null and b/packs/faction_solgov/icons/obj/skrell/obj_head_solgov_skrell.dmi differ diff --git a/packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi b/packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi new file mode 100644 index 00000000000..ece7cb402fa Binary files /dev/null and b/packs/faction_solgov/icons/obj/skrell/obj_suit_solgov_skrell.dmi differ diff --git a/packs/faction_solgov/icons/obj/solbanner.dmi b/packs/faction_solgov/icons/obj/solbanner.dmi new file mode 100644 index 00000000000..c81bd60a8d3 Binary files /dev/null and b/packs/faction_solgov/icons/obj/solbanner.dmi differ diff --git a/packs/faction_solgov/icons/obj/solgov-64x.dmi b/packs/faction_solgov/icons/obj/solgov-64x.dmi new file mode 100644 index 00000000000..631f44ddbaf Binary files /dev/null and b/packs/faction_solgov/icons/obj/solgov-64x.dmi differ diff --git a/packs/faction_solgov/icons/obj/solgov-decals.dmi b/packs/faction_solgov/icons/obj/solgov-decals.dmi new file mode 100644 index 00000000000..464b4a56397 Binary files /dev/null and b/packs/faction_solgov/icons/obj/solgov-decals.dmi differ diff --git a/packs/faction_solgov/icons/obj/solgov_floor.dmi b/packs/faction_solgov/icons/obj/solgov_floor.dmi new file mode 100644 index 00000000000..c7cd8dd0c60 Binary files /dev/null and b/packs/faction_solgov/icons/obj/solgov_floor.dmi differ diff --git a/packs/faction_solgov/icons/obj/unathi/obj_head_solgov_unathi.dmi b/packs/faction_solgov/icons/obj/unathi/obj_head_solgov_unathi.dmi new file mode 100644 index 00000000000..b918ef0a285 Binary files /dev/null and b/packs/faction_solgov/icons/obj/unathi/obj_head_solgov_unathi.dmi differ diff --git a/packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi b/packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi new file mode 100644 index 00000000000..ed18ed78a6a Binary files /dev/null and b/packs/faction_solgov/icons/obj/unathi/obj_suit_solgov_unathi.dmi differ diff --git a/packs/faction_solgov/icons/obj/uniques.dmi b/packs/faction_solgov/icons/obj/uniques.dmi new file mode 100644 index 00000000000..859dbc61e30 Binary files /dev/null and b/packs/faction_solgov/icons/obj/uniques.dmi differ diff --git a/packs/faction_solgov/mapping_helpers.dm b/packs/faction_solgov/mapping_helpers.dm new file mode 100644 index 00000000000..74d9ae42274 --- /dev/null +++ b/packs/faction_solgov/mapping_helpers.dm @@ -0,0 +1,38 @@ +/obj/random/solgov + name = "random solgov equipment" + desc = "This is a random piece of solgov equipment or clothing." + icon = 'packs/faction_solgov/icons/obj/obj_head_solgov.dmi' + icon_state = "solsoft" + +/obj/random/solgov/spawn_choices() + return list(/obj/item/clothing/head/solgov/utility/fleet = 4, + /obj/item/clothing/head/soft/solgov/expedition = 2, + /obj/item/clothing/head/soft/solgov/fleet = 4, + /obj/item/clothing/head/helmet/solgov = 1, + /obj/item/clothing/suit/storage/vest/solgov = 2, + /obj/item/clothing/under/solgov/utility = 5, + /obj/item/clothing/under/solgov/utility/fleet = 3, + /obj/item/clothing/under/solgov/pt/expeditionary = 4, + /obj/item/clothing/under/solgov/pt/fleet = 4 + ) + +/obj/random/maintenance/solgov + name = "random maintenance item" + desc = "This is a random maintenance item." + icon = 'icons/obj/items.dmi' + icon_state = "gift1" + +/obj/random/maintenance/solgov/spawn_choices() + return list(/obj/random/junk = 4, + /obj/random/trash = 4, + /obj/random/maintenance/solgov/clean = 5) + +/obj/random/maintenance/solgov/clean + name = "random maintenance item" + desc = "This is a random maintenance item." + icon = 'icons/obj/items.dmi' + icon_state = "gift2" + +/obj/random/maintenance/solgov/clean/spawn_choices() + return list(/obj/random/solgov = 3, + /obj/random/maintenance/clean = 800) diff --git a/packs/faction_solgov/mecha.dm b/packs/faction_solgov/mecha.dm new file mode 100644 index 00000000000..12b5690b973 --- /dev/null +++ b/packs/faction_solgov/mecha.dm @@ -0,0 +1,31 @@ +/mob/living/exosuit/premade/light/exploration + name = "exploration mech" + desc = "It looks a bit charred." + +/mob/living/exosuit/premade/light/exploration/Initialize() + if(!body) + body = new /obj/item/mech_component/chassis/pod(src) + body.color = COLOR_GUNMETAL + if(!legs) + legs = new /obj/item/mech_component/propulsion/tracks(src) + legs.color = COLOR_GUNMETAL + if(!arms) + arms = new /obj/item/mech_component/manipulators/powerloader(src) + arms.color = COLOR_PURPLE + + . = ..() + + //Damage it + var/list/parts = list(arms,legs,head,body) + var/obj/item/mech_component/damaged = pick(parts) + damaged.take_burn_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + if(prob(33)) + parts -= damaged + damaged = pick(parts) + damaged.take_burn_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + +/mob/living/exosuit/premade/light/exploration/spawn_mech_equipment() + install_system(new /obj/item/mech_equipment/light(src), HARDPOINT_HEAD) + install_system(new /obj/item/mech_equipment/clamp(src), HARDPOINT_RIGHT_HAND) + install_system(new /obj/item/mech_equipment/mounted_system/taser/plasma(src), HARDPOINT_LEFT_HAND) + install_system(new /obj/item/mech_equipment/ionjets(src), HARDPOINT_BACK) diff --git a/packs/faction_solgov/stamps.dm b/packs/faction_solgov/stamps.dm new file mode 100644 index 00000000000..c04c3e62eb9 --- /dev/null +++ b/packs/faction_solgov/stamps.dm @@ -0,0 +1,7 @@ +/obj/item/stamp/solgov + name = "\improper Sol Central Government rubber stamp" + icon_state = "stamp-solgov" + +/obj/item/stamp/nt + name = "\improper corporate rubber stamp" + icon_state = "stamp-corp" diff --git a/packs/faction_solgov/suit_storage.dm b/packs/faction_solgov/suit_storage.dm new file mode 100644 index 00000000000..d55ab0f84e4 --- /dev/null +++ b/packs/faction_solgov/suit_storage.dm @@ -0,0 +1,37 @@ +// Suit cyclers and storage +/obj/machinery/suit_cycler/exploration + name = "Exploration suit cycler" + model_text = "Exploration" +// req_access = list(access_explorer) + available_modifications = list(/decl/item_modifier/space_suit/explorer) + species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI) + +/obj/machinery/suit_storage_unit/explorer + name = "Exploration Voidsuit Storage Unit" + suit = /obj/item/clothing/suit/space/void/exploration + helmet = /obj/item/clothing/head/helmet/space/void/exploration + boots = /obj/item/clothing/shoes/magboots + tank = /obj/item/tank/oxygen + mask = /obj/item/clothing/mask/breath +// req_access = list(access_explorer) + islocked = 1 + +/obj/machinery/suit_storage_unit/pilot + name = "Pilot Voidsuit Storage Unit" + suit = /obj/item/clothing/suit/space/void/pilot + helmet = /obj/item/clothing/head/helmet/space/void/pilot + boots = /obj/item/clothing/shoes/magboots + tank = /obj/item/tank/oxygen + mask = /obj/item/clothing/mask/breath +// req_access = list(access_pilot) + islocked = 1 + +/obj/machinery/suit_storage_unit/command + name = "Command Voidsuit Storage Unit" + suit = /obj/item/clothing/suit/space/void/command + helmet = /obj/item/clothing/head/helmet/space/void/command + boots = /obj/item/clothing/shoes/magboots + tank = /obj/item/tank/oxygen + mask = /obj/item/clothing/mask/breath + req_access = list(access_bridge, access_keycard_auth) + islocked = 1 diff --git a/packs/faction_solgov/support_changes.dm b/packs/faction_solgov/support_changes.dm new file mode 100644 index 00000000000..6638e70ec32 --- /dev/null +++ b/packs/faction_solgov/support_changes.dm @@ -0,0 +1,6 @@ +/obj/item/storage/wallet/Initialize() + . = ..() + can_hold |= list( + /obj/item/clothing/accessory/solgov, + /obj/item/clothing/accessory/ribbon + ) diff --git a/wildflower/code/modules/landmarks.dm b/wildflower/code/modules/landmarks.dm new file mode 100644 index 00000000000..d84b6b4f7a6 --- /dev/null +++ b/wildflower/code/modules/landmarks.dm @@ -0,0 +1,11 @@ +/obj/effect/landmark/latejoin + name = "JoinLate" + +/obj/effect/landmark/latejoin/cryo + name = "JoinLateCryo" + +/obj/effect/landmark/latejoin/gateway + name = "JoinLateGateway" + +/obj/effect/landmark/latejoin/cyborg + name = "JoinLateCyborg" \ No newline at end of file