diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index 49f426ac6f..b98ca7e375 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -1068,6 +1068,22 @@ if("Gem-Encrusted" || "Wizard") parent_helmet = /obj/item/clothing/head/helmet/space/void/wizard parent_suit = /obj/item/clothing/suit/space/void/wizard + //Special or Event suits + if("Vintage Crew") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb + parent_suit = /obj/item/clothing/suit/space/void/refurb + if("Vintage Engineering") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/engineering + parent_suit = /obj/item/clothing/suit/space/void/refurb/engineering + if("Vintage Medical") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/medical + parent_suit = /obj/item/clothing/suit/space/void/refurb/medical + if("Vintage Marine") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/marine + parent_suit = /obj/item/clothing/suit/space/void/refurb/marine + if("Vintage Officer") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/officer + parent_suit = /obj/item/clothing/suit/space/void/refurb/officer //BEGIN: Space for additional downstream variants //VOREStation Addition Start if("Director") @@ -1076,6 +1092,21 @@ if("Prototype") parent_helmet = /obj/item/clothing/head/helmet/space/void/merc/prototype parent_suit = /obj/item/clothing/suit/space/void/merc/prototype + if("Talon Crew") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/talon + parent_suit = /obj/item/clothing/suit/space/void/refurb/talon + if("Talon Engineering") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/engineering/talon + parent_suit = /obj/item/clothing/suit/space/void/refurb/engineering/talon + if("Talon Medical") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/medical/talon + parent_suit = /obj/item/clothing/suit/space/void/refurb/medical/talon + if("Talon Marine") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/marine/talon + parent_suit = /obj/item/clothing/suit/space/void/refurb/marine/talon + if("Talon Officer") + parent_helmet = /obj/item/clothing/head/helmet/space/void/refurb/officer/talon + parent_suit = /obj/item/clothing/suit/space/void/refurb/officer/talon //VOREStation Addition End //END: downstream variant space diff --git a/code/game/machinery/suit_storage_unit_vr.dm b/code/game/machinery/suit_storage_unit_vr.dm index a3005b4502..610ea31ed2 100644 --- a/code/game/machinery/suit_storage_unit_vr.dm +++ b/code/game/machinery/suit_storage_unit_vr.dm @@ -29,3 +29,42 @@ /obj/machinery/suit_cycler/prototype/Initialize() //No Teshari Sprites species -= SPECIES_TESHARI return ..() + +/obj/machinery/suit_cycler/vintage + name = "Vintage suit cycler" + model_text = "Vintage" + departments = list("Vintage Crew","Vintage Engineering","Vintage Marine","Vintage Medical","Vintage Officer") + +/obj/machinery/suit_cycler/vintage/Initialize() //No Teshari Sprites + species -= SPECIES_TESHARI + return ..() + +/obj/machinery/suit_cycler/vintage/tcrew + name = "Talon crew suit cycler" + model_text = "Talon crew" + req_access = list(access_talon) + departments = list("Talon Crew") + +/obj/machinery/suit_cycler/vintage/tengi + name = "Talon engineer suit cycler" + model_text = "Talon engineer" + req_access = list(access_talon) + departments = list("Talon Engineering") + +/obj/machinery/suit_cycler/vintage/tguard + name = "Talon guard suit cycler" + model_text = "Talon guard" + req_access = list(access_talon) + departments = list("Talon Marine") + +/obj/machinery/suit_cycler/vintage/tmedic + name = "Talon doctor suit cycler" + model_text = "Talon doctor" + req_access = list(access_talon) + departments = list("Talon Medical") + +/obj/machinery/suit_cycler/vintage/tcaptain + name = "Talon captain suit cycler" + model_text = "Talon captain" + req_access = list(access_talon) + departments = list("Talon Officer") \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/void/event.dm b/code/modules/clothing/spacesuits/void/event.dm new file mode 100644 index 0000000000..8b46a5a740 --- /dev/null +++ b/code/modules/clothing/spacesuits/void/event.dm @@ -0,0 +1,208 @@ +//Refurbished Set +//Voidsuits from old Terran exploration vessels and naval ships. + +//Standard Crewsuit (GRAY) +//Nothing really special here. Some light resists for mostly-non-combat purposes. The rad protection ain't bad? +//The reduced slowdown is an added bonus - something to make it worth considering using if you do find it. +/obj/item/clothing/head/helmet/space/void/refurb + name = "vintage crewman's voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. This one is devoid of any identifying markings or rank indicators." + icon_state = "rig0-vintagecrew" + icon = 'icons/obj/clothing/helmets_vr.dmi' + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") + armor = list(melee = 30, bullet = 15, laser = 15,energy = 5, bomb = 20, bio = 100, rad = 50) + light_overlay = "helmet_light" + sprite_sheets = list( + SPECIES_HUMAN = 'icons/mob/helmet_vr.dmi', + SPECIES_TAJ = 'icons/mob/species/tajaran/helmet_vr.dmi', + SPECIES_SKRELL = 'icons/mob/species/skrell/helmet_vr.dmi', + SPECIES_UNATHI = 'icons/mob/species/unathi/helmet_vr.dmi', + SPECIES_XENOHYBRID = 'icons/mob/species/unathi/helmet_vr.dmi', + SPECIES_AKULA = 'icons/mob/species/unathi/helmet_vr.dmi', + SPECIES_SERGAL = 'icons/mob/species/unathi/helmet_vr.dmi', + SPECIES_VULPKANIN = 'icons/mob/species/vulpkanin/helmet_vr.dmi', + SPECIES_ZORREN_HIGH = 'icons/mob/species/vulpkanin/helmet_vr.dmi', + SPECIES_FENNEC = 'icons/mob/species/vulpkanin/helmet_vr.dmi' + ) + sprite_sheets_obj = list( + SPECIES_TAJ = 'icons/obj/clothing/species/tajaran/helmets_vr.dmi', // Copied from void.dm + SPECIES_SKRELL = 'icons/obj/clothing/species/skrell/helmets_vr.dmi', // Copied from void.dm + SPECIES_UNATHI = 'icons/obj/clothing/species/unathi/helmets_vr.dmi', // Copied from void.dm + SPECIES_XENOHYBRID = 'icons/obj/clothing/species/unathi/helmets_vr.dmi', + SPECIES_AKULA = 'icons/obj/clothing/species/unathi/helmets_vr.dmi', + SPECIES_SERGAL = 'icons/obj/clothing/species/unathi/helmets_vr.dmi', + SPECIES_VULPKANIN = 'icons/obj/clothing/species/vulpkanin/helmets_vr.dmi', + SPECIES_ZORREN_HIGH = 'icons/obj/clothing/species/vulpkanin/helmets_vr.dmi', + SPECIES_FENNEC = 'icons/obj/clothing/species/vulpkanin/helmets_vr.dmi' + ) + sprite_sheets_refit = list() //have to nullify this as well just to be thorough + +/obj/item/clothing/suit/space/void/refurb + name = "vintage crewman's voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer spacers swear by these old things, even if new powered hardsuits have more features and better armor. This one is devoid of any identifying markings or rank indicators." + icon_state = "rig-vintagecrew" + icon = 'icons/obj/clothing/spacesuits_vr.dmi' + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") + slowdown = 0.5 + armor = list(melee = 30, bullet = 15, laser = 15,energy = 5, bomb = 20, bio = 100, rad = 50) + allowed = list(/obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/storage/briefcase/inflatable, + /obj/item/device/gps, + /obj/item/device/radio/beacon, + /obj/item/weapon/pickaxe, + /obj/item/weapon/shovel + ) + sprite_sheets = list( + SPECIES_HUMAN = 'icons/mob/spacesuit_vr.dmi', + SPECIES_TAJ = 'icons/mob/species/tajaran/suit_vr.dmi', + SPECIES_SKRELL = 'icons/mob/species/skrell/suit_vr.dmi', + SPECIES_UNATHI = 'icons/mob/species/unathi/suit_vr.dmi', + SPECIES_XENOHYBRID = 'icons/mob/species/unathi/suit_vr.dmi', + SPECIES_AKULA = 'icons/mob/species/unathi/suit_vr.dmi', + SPECIES_SERGAL = 'icons/mob/species/unathi/suit_vr.dmi', + SPECIES_VULPKANIN = 'icons/mob/species/vulpkanin/suit_vr.dmi', + SPECIES_ZORREN_HIGH = 'icons/mob/species/vulpkanin/suit_vr.dmi', + SPECIES_FENNEC = 'icons/mob/species/vulpkanin/suit_vr.dmi' + ) + sprite_sheets_obj = list( + SPECIES_TAJ = 'icons/obj/clothing/species/tajaran/spacesuits_vr.dmi', // Copied from void.dm + SPECIES_SKRELL = 'icons/obj/clothing/species/skrell/spacesuits_vr.dmi', // Copied from void.dm + SPECIES_UNATHI = 'icons/obj/clothing/species/unathi/spacesuits_vr.dmi', // Copied from void.dm + SPECIES_XENOHYBRID = 'icons/obj/clothing/species/unathi/spacesuits_vr.dmi', + SPECIES_AKULA = 'icons/obj/clothing/species/unathi/spacesuits_vr.dmi', + SPECIES_SERGAL = 'icons/obj/clothing/species/unathi/spacesuits_vr.dmi', + SPECIES_VULPKANIN = 'icons/obj/clothing/species/vulpkanin/spacesuits_vr.dmi', + SPECIES_ZORREN_HIGH = 'icons/obj/clothing/species/vulpkanin/spacesuits_vr.dmi', + SPECIES_FENNEC = 'icons/obj/clothing/species/vulpkanin/spacesuits_vr.dmi' + ) + +//Engineering Crewsuit (ORANGE, RING) +//This is probably the most appealing to get your hands on for basic protection and the specialist stuff +//Don't expect it to stand up to modern assault/laser rifles, but it'll make you a fair bit tougher against most low-end pistols and SMGs +/obj/item/clothing/head/helmet/space/void/refurb/engineering + name = "vintage engineering voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. This one in particular seems to be an ode to the Ship of Theseus, but the insulation and radiation proofing are top-notch, and it has several oily stains that seem to be impossible to scrub off." + icon_state = "rig0-vintageengi" + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") + armor = list(melee = 40, bullet = 20, laser = 20, energy = 5, bomb = 35, bio = 100, rad = 100) + min_pressure_protection = 0 * ONE_ATMOSPHERE + max_pressure_protection = 15 * ONE_ATMOSPHERE + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + +/obj/item/clothing/suit/space/void/refurb/engineering + name = "vintage engineering voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. This one in particular seems to be an ode to the Ship of Theseus, but the insulation and radiation proofing are top-notch. The chestplate bears the logo of an old shipyard - though you don't recognize the name." + icon_state = "rig-vintageengi" + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") + slowdown = 1 + armor = list(melee = 40, bullet = 20, laser = 20, energy = 5, bomb = 35, bio = 100, rad = 100) + min_pressure_protection = 0 * ONE_ATMOSPHERE + max_pressure_protection = 15 * ONE_ATMOSPHERE + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE + allowed = list(/obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/device/t_scanner, + /obj/item/weapon/rcd, + /obj/item/weapon/rcd_ammo, + /obj/item/weapon/storage/toolbox, + /obj/item/weapon/storage/briefcase/inflatable, + /obj/item/device/gps, + /obj/item/device/radio/beacon, + /obj/item/weapon/tool, + /obj/item/weapon/weldingtool, + /obj/item/weapon/cell, + /obj/item/weapon/pickaxe, + /obj/item/weapon/shovel + ) + +//Medical Crewsuit (GREEN, CROSS) +//This thing is basically tissuepaper, but it has very solid rad protection for its age +//It also has the bonus of not slowing you down quite as much as other suits, same as the crew suit +/obj/item/clothing/head/helmet/space/void/refurb/medical + name = "vintage medical voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. The green and white markings indicate this as a medic's suit." + icon_state = "rig0-vintagemedic" + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") + armor = list(melee = 30, bullet = 15, laser = 15, energy = 5, bomb = 25, bio = 100, rad = 75) + +/obj/item/clothing/suit/space/void/refurb/medical + name = "vintage medical voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer spacers swear by these old things, even if new powered hardsuits have more features and better armor. The green and white markings indicate this as a medic's suit." + icon_state = "rig-vintagemedic" + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") + slowdown = 0.5 + armor = list(melee = 30, bullet = 15, laser = 15, energy = 5, bomb = 25, bio = 100, rad = 75) + allowed = list(/obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/storage/firstaid, + /obj/item/device/healthanalyzer, + /obj/item/stack/medical, + /obj/item/device/gps, + /obj/item/device/radio/beacon, + /obj/item/weapon/cell + ) + +//Marine Crewsuit (BLUE, SHIELD) +//Really solid, balance between Sec and Sec EVA, but it has slightly worse shock protection +/obj/item/clothing/head/helmet/space/void/refurb/marine + name = "vintage marine's voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. The blue markings indicate this as the marine/guard variant, likely from a merchant ship." + icon_state = "rig0-vintagemarine" + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") + armor = list(melee = 40, bullet = 35, laser = 35, energy = 5, bomb = 40, bio = 100, rad = 50) + siemens_coefficient = 0.8 + +/obj/item/clothing/suit/space/void/refurb/marine + name = "vintage marine's voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer marines swear by these old things, even if new powered hardsuits have more features and better armor. The blue markings indicate this as the marine/guard variant, likely from a merchant ship." + icon_state = "rig-vintagemarine" + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") + slowdown = 1 + armor = list(melee = 40, bullet = 35, laser = 35, energy = 5, bomb = 40, bio = 100, rad = 50) + siemens_coefficient = 0.8 + allowed = list(/obj/item/weapon/gun, + /obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/melee, + /obj/item/device/gps, + /obj/item/device/radio/beacon, + /obj/item/weapon/handcuffs, + /obj/item/ammo_magazine, + /obj/item/weapon/cell + ) + +//Officer Crewsuit (GOLD, X) +//The best of the bunch - at the time, this would have been almost cutting edge +//Now it's good, but it's badly outclassed by the hot shit that the TSCs and such can get +/obj/item/clothing/head/helmet/space/void/refurb/officer + name = "vintage officer's voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. This variant appears to be an officer's, and has the best protection of all the old models." + icon_state = "rig0-vintageofficer" + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") + armor = list(melee = 50, bullet = 45, laser = 45, energy = 10, bomb = 30, bio = 100, rad = 60) + siemens_coefficient = 0.7 + +/obj/item/clothing/suit/space/void/refurb/officer + name = "vintage officer's voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer spacers swear by these old things, even if new powered hardsuits have more features and better armor. This variant appears to be an officer's, and has the best protection of all the old models." + icon_state = "rig-vintageofficer" + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") + slowdown = 1 + armor = list(melee = 50, bullet = 45, laser = 45, energy = 10, bomb = 30, bio = 100, rad = 60) + siemens_coefficient = 0.7 + allowed = list(/obj/item/weapon/gun, + /obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/melee, + /obj/item/device/gps, + /obj/item/device/radio/beacon, + /obj/item/weapon/handcuffs, + /obj/item/ammo_magazine, + /obj/item/weapon/cell + ) \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/void/event_vr.dm b/code/modules/clothing/spacesuits/void/event_vr.dm new file mode 100644 index 0000000000..2a49229d0a --- /dev/null +++ b/code/modules/clothing/spacesuits/void/event_vr.dm @@ -0,0 +1,40 @@ +/obj/item/clothing/head/helmet/space/void/refurb/talon + name = "talon pilot's voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. This one belongs to the ship's pilot." + camera_networks = list(NETWORK_TALON_HELMETS) + +/obj/item/clothing/suit/space/void/refurb/talon + name = "talon pilot's voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer spacers swear by these old things, even if new powered hardsuits have more features and better armor. This one belongs to the ship's pilot." + +/obj/item/clothing/head/helmet/space/void/refurb/engineering/talon + name = "talon engineering voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. This one in particular must be several decades old, but the insulation and radiation proofing are top-notch. Don't mind the grease marks." + camera_networks = list(NETWORK_TALON_HELMETS) + +/obj/item/clothing/suit/space/void/refurb/engineering/talon + name = "talon engineering voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. This one in particular must be several decades old, but the insulation and radiation proofing are top-notch. The chestplate has a simple gear logo on it." + +/obj/item/clothing/head/helmet/space/void/refurb/medical/talon + name = "talon medical voidsuit helmet" + camera_networks = list(NETWORK_TALON_HELMETS) + +/obj/item/clothing/suit/space/void/refurb/medical/talon + name = "talon medical voidsuit" + +/obj/item/clothing/head/helmet/space/void/refurb/marine/talon + name = "talon marine's voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. The blue markings indicate this as the marine/guard variant." + camera_networks = list(NETWORK_TALON_HELMETS) + +/obj/item/clothing/suit/space/void/refurb/marine/talon + name = "talon marine's voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer marines swear by these old things, even if new powered hardsuits have more features and better armor. The blue markings indicate this as the marine/guard variant." + +/obj/item/clothing/head/helmet/space/void/refurb/officer/talon + name = "talon officer's voidsuit helmet" + camera_networks = list(NETWORK_TALON_HELMETS) + +/obj/item/clothing/suit/space/void/refurb/officer/talon + name = "talon officer's voidsuit" \ No newline at end of file diff --git a/icons/mob/helmet_vr.dmi b/icons/mob/helmet_vr.dmi new file mode 100644 index 0000000000..b7b5c6d059 Binary files /dev/null and b/icons/mob/helmet_vr.dmi differ diff --git a/icons/mob/spacesuit_vr.dmi b/icons/mob/spacesuit_vr.dmi new file mode 100644 index 0000000000..2f2ead49f5 Binary files /dev/null and b/icons/mob/spacesuit_vr.dmi differ diff --git a/icons/mob/species/skrell/helmet_vr.dmi b/icons/mob/species/skrell/helmet_vr.dmi new file mode 100644 index 0000000000..022e89e36a Binary files /dev/null and b/icons/mob/species/skrell/helmet_vr.dmi differ diff --git a/icons/mob/species/skrell/suit_vr.dmi b/icons/mob/species/skrell/suit_vr.dmi new file mode 100644 index 0000000000..e83e21639d Binary files /dev/null and b/icons/mob/species/skrell/suit_vr.dmi differ diff --git a/icons/mob/species/tajaran/helmet_vr.dmi b/icons/mob/species/tajaran/helmet_vr.dmi new file mode 100644 index 0000000000..8f6f5b2d82 Binary files /dev/null and b/icons/mob/species/tajaran/helmet_vr.dmi differ diff --git a/icons/mob/species/tajaran/suit_vr.dmi b/icons/mob/species/tajaran/suit_vr.dmi new file mode 100644 index 0000000000..c7608880c4 Binary files /dev/null and b/icons/mob/species/tajaran/suit_vr.dmi differ diff --git a/icons/mob/species/unathi/helmet_vr.dmi b/icons/mob/species/unathi/helmet_vr.dmi new file mode 100644 index 0000000000..4c17114730 Binary files /dev/null and b/icons/mob/species/unathi/helmet_vr.dmi differ diff --git a/icons/mob/species/unathi/suit_vr.dmi b/icons/mob/species/unathi/suit_vr.dmi new file mode 100644 index 0000000000..0516cfbac2 Binary files /dev/null and b/icons/mob/species/unathi/suit_vr.dmi differ diff --git a/icons/mob/species/vulpkanin/helmet_vr.dmi b/icons/mob/species/vulpkanin/helmet_vr.dmi new file mode 100644 index 0000000000..5b422f8ccf Binary files /dev/null and b/icons/mob/species/vulpkanin/helmet_vr.dmi differ diff --git a/icons/mob/species/vulpkanin/suit_vr.dmi b/icons/mob/species/vulpkanin/suit_vr.dmi new file mode 100644 index 0000000000..a8836a5a6e Binary files /dev/null and b/icons/mob/species/vulpkanin/suit_vr.dmi differ diff --git a/icons/obj/clothing/helmets_vr.dmi b/icons/obj/clothing/helmets_vr.dmi new file mode 100644 index 0000000000..f635aae960 Binary files /dev/null and b/icons/obj/clothing/helmets_vr.dmi differ diff --git a/icons/obj/clothing/spacesuits_vr.dmi b/icons/obj/clothing/spacesuits_vr.dmi new file mode 100644 index 0000000000..1b3beadd97 Binary files /dev/null and b/icons/obj/clothing/spacesuits_vr.dmi differ diff --git a/icons/obj/clothing/species/skrell/helmets_vr.dmi b/icons/obj/clothing/species/skrell/helmets_vr.dmi new file mode 100644 index 0000000000..df9fbceaa2 Binary files /dev/null and b/icons/obj/clothing/species/skrell/helmets_vr.dmi differ diff --git a/icons/obj/clothing/species/skrell/spacesuits_vr.dmi b/icons/obj/clothing/species/skrell/spacesuits_vr.dmi new file mode 100644 index 0000000000..6510610634 Binary files /dev/null and b/icons/obj/clothing/species/skrell/spacesuits_vr.dmi differ diff --git a/icons/obj/clothing/species/tajaran/helmets_vr.dmi b/icons/obj/clothing/species/tajaran/helmets_vr.dmi new file mode 100644 index 0000000000..a7de0471a5 Binary files /dev/null and b/icons/obj/clothing/species/tajaran/helmets_vr.dmi differ diff --git a/icons/obj/clothing/species/tajaran/spacesuits_vr.dmi b/icons/obj/clothing/species/tajaran/spacesuits_vr.dmi new file mode 100644 index 0000000000..f505178f3d Binary files /dev/null and b/icons/obj/clothing/species/tajaran/spacesuits_vr.dmi differ diff --git a/icons/obj/clothing/species/unathi/helmets_vr.dmi b/icons/obj/clothing/species/unathi/helmets_vr.dmi new file mode 100644 index 0000000000..d311c427ae Binary files /dev/null and b/icons/obj/clothing/species/unathi/helmets_vr.dmi differ diff --git a/icons/obj/clothing/species/unathi/spacesuits_vr.dmi b/icons/obj/clothing/species/unathi/spacesuits_vr.dmi new file mode 100644 index 0000000000..cbe2998f16 Binary files /dev/null and b/icons/obj/clothing/species/unathi/spacesuits_vr.dmi differ diff --git a/icons/obj/clothing/species/vulpkanin/helmets_vr.dmi b/icons/obj/clothing/species/vulpkanin/helmets_vr.dmi new file mode 100644 index 0000000000..cf561b831c Binary files /dev/null and b/icons/obj/clothing/species/vulpkanin/helmets_vr.dmi differ diff --git a/icons/obj/clothing/species/vulpkanin/spacesuits_vr.dmi b/icons/obj/clothing/species/vulpkanin/spacesuits_vr.dmi new file mode 100644 index 0000000000..e2b68e0961 Binary files /dev/null and b/icons/obj/clothing/species/vulpkanin/spacesuits_vr.dmi differ diff --git a/maps/tether/submaps/offmap/talon.dm b/maps/tether/submaps/offmap/talon.dm index 2324d2ddc1..df12eafbaf 100644 --- a/maps/tether/submaps/offmap/talon.dm +++ b/maps/tether/submaps/offmap/talon.dm @@ -263,8 +263,8 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/weapon/melee/telebaton, /obj/item/device/flash, /obj/item/device/radio/headset/talon, - /obj/item/clothing/head/helmet/space/void/captain/talon, - /obj/item/clothing/suit/space/void/captain/talon, + /obj/item/clothing/head/helmet/space/void/refurb/officer/talon, + /obj/item/clothing/suit/space/void/refurb/officer/talon, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, /obj/item/device/gps/command/taloncap @@ -295,8 +295,8 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/weapon/storage/belt/security, /obj/item/device/radio/headset/talon, /obj/item/clothing/accessory/solgov/department/security/marine, - /obj/item/clothing/head/helmet/space/void/security/talon, - /obj/item/clothing/suit/space/void/security/talon, + /obj/item/clothing/head/helmet/space/void/refurb/marine/talon, + /obj/item/clothing/suit/space/void/refurb/marine/talon, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, /obj/item/device/gps/security/talonguard @@ -320,8 +320,8 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/clothing/suit/storage/toggle/fr_jacket, /obj/item/clothing/shoes/white, /obj/item/device/radio/headset/talon, - /obj/item/clothing/head/helmet/space/void/medical/talon, - /obj/item/clothing/suit/space/void/medical/talon, + /obj/item/clothing/head/helmet/space/void/refurb/medical/talon, + /obj/item/clothing/suit/space/void/refurb/medical/talon, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, /obj/item/device/gps/medical/talonmed @@ -347,8 +347,8 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/clothing/mask/gas, /obj/item/taperoll/atmos, /obj/item/weapon/tank/emergency/oxygen/engi, - /obj/item/clothing/head/helmet/space/void/atmos/talon, - /obj/item/clothing/suit/space/void/atmos/talon, + /obj/item/clothing/head/helmet/space/void/refurb/engineering/talon, + /obj/item/clothing/suit/space/void/refurb/engineering/talon, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, /obj/item/device/gps/engineering/taloneng @@ -373,8 +373,8 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/clothing/shoes/boots/jackboots/toeless, /obj/item/device/radio/headset/talon, /obj/item/device/flashlight/color/orange, - /obj/item/clothing/head/helmet/space/void/pilot/talon, - /obj/item/clothing/suit/space/void/pilot/talon, + /obj/item/clothing/head/helmet/space/void/refurb/talon, + /obj/item/clothing/suit/space/void/refurb/talon, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, /obj/item/device/gps/explorer/talonpilot diff --git a/maps/tether/submaps/offmap/talon1.dmm b/maps/tether/submaps/offmap/talon1.dmm index 940a54493e..4ec9125235 100644 --- a/maps/tether/submaps/offmap/talon1.dmm +++ b/maps/tether/submaps/offmap/talon1.dmm @@ -3616,9 +3616,7 @@ /area/talon/deckone/brig) "gt" = ( /obj/effect/floor_decal/borderfloor, -/obj/machinery/suit_cycler/security{ - req_access = list(301) - }, +/obj/machinery/suit_cycler/vintage/tguard, /turf/simulated/floor/tiled/steel, /area/talon/deckone/brig) "gu" = ( @@ -5392,10 +5390,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/suit_cycler/engineering{ - name = "Atmospherics suit cycler"; - req_access = list(301) - }, +/obj/machinery/suit_cycler/vintage/tengi, /turf/simulated/floor/tiled/techmaint, /area/talon/deckone/starboard_eng) "jz" = ( @@ -7565,9 +7560,7 @@ /turf/simulated/floor/tiled/steel_ridged, /area/talon/deckone/bridge_hallway) "ZU" = ( -/obj/machinery/suit_cycler/medical{ - req_access = list(301) - }, +/obj/machinery/suit_cycler/vintage/tmedic, /turf/simulated/floor/tiled/white, /area/talon/deckone/medical) "ZV" = ( diff --git a/maps/tether/submaps/offmap/talon1.dmm.before b/maps/tether/submaps/offmap/talon1.dmm.before new file mode 100644 index 0000000000..0812ae42df --- /dev/null +++ b/maps/tether/submaps/offmap/talon1.dmm.before @@ -0,0 +1,875 @@ +"aa" = (/turf/space,/area/space) +"ab" = (/turf/simulated/wall/rshull,/area/talon/deckone/bridge) +"ac" = (/turf/simulated/wall,/area/talon/deckone/bridge) +"ad" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/bridge) +"ae" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"af" = (/obj/machinery/computer/ship/helm{req_one_access = list(301)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"ag" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"ah" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"ai" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"aj" = (/obj/machinery/computer/ship/sensors,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"ak" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"al" = (/obj/machinery/computer/ship/navigation{icon_state = "computer"; dir = 4},/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"am" = (/obj/structure/bed/chair/bay/comfy/brown{icon_state = "bay_comfychair_preview"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"an" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"ao" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"ap" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"aq" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/computer/ship/engines{dir = 8; icon_state = "computer"; req_one_access = list(301)},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"ar" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 8},/obj/structure/table/steel,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/button/remote/blast_door{dir = 8; id = "talon_sensor"; name = "sensor blast shields"},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"as" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"at" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/obj/structure/table/steel,/obj/machinery/light{dir = 4},/obj/machinery/button/remote/blast_door{dir = 8; id = "talon_windows"; name = "window blast shields"},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"au" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 8},/obj/item/modular_computer/console/preset/talon{icon_state = "console"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"av" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 8; icon_state = "bay_comfychair_preview"; name = "doctor's seat"},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aw" = (/obj/structure/bed/chair/bay/comfy/red{icon_state = "bay_comfychair_preview"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"ax" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/obj/item/modular_computer/console/preset/talon{icon_state = "console"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"ay" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"az" = (/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aA" = (/obj/machinery/suit_cycler/vintage/tmedic,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"aB" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aC" = (/turf/simulated/wall/rshull,/area/talon/maintenance/deckone_port) +"aD" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aE" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/talon{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_x = 8; pixel_y = -26},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"aG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"aH" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"aI" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aJ" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"aK" = (/turf/simulated/wall/rshull,/area/talon/maintenance/deckone_starboard) +"aL" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"aM" = (/turf/simulated/wall,/area/talon/maintenance/deckone_port) +"aN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/command{name = "Talon Secure Airlock"; req_one_access = list(301)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"aO" = (/turf/simulated/wall,/area/talon/maintenance/deckone_starboard) +"aP" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"aQ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/suit_cycler/vintage/tguard,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"aR" = (/turf/simulated/wall,/area/talon/deckone/secure_storage) +"aS" = (/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"aT" = (/obj/structure/table/rack/steel,/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"aU" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"aV" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"aW" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/bridge_hallway) +"aX" = (/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/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"aY" = (/turf/simulated/wall,/area/talon/deckone/armory) +"aZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{dir = 4; icon_state = "light1"; pixel_x = -24},/obj/machinery/recharger/wallcharger{pixel_x = 5; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"ba" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"bb" = (/obj/structure/table/rack/steel,/obj/item/clothing/suit/armor/combat,/obj/item/clothing/head/helmet/combat,/obj/item/clothing/under/syndicate/combat,/obj/machinery/camera/network/talon,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bc" = (/obj/structure/table/rack/steel,/obj/item/clothing/suit/space/syndicate/black,/obj/item/clothing/head/helmet/space/syndicate/black,/obj/item/clothing/shoes/magboots,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bd" = (/obj/structure/barricade,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"be" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"bf" = (/obj/structure/cable/green{icon_state = "1-2"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"bg" = (/obj/structure/cable/green{icon_state = "1-2"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"bh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"bi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/talon/deckone/secure_storage) +"bj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"bk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"bl" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"bm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/talon/deckone/armory) +"bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bo" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"bp" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"bq" = (/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"br" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"bs" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"bt" = (/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},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"bu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor/eastleft{req_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/secure_storage) +"bv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"bw" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/catwalk_plated/dark,/turf/simulated/floor/plating,/area/talon/deckone/bridge_hallway) +"bx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 4},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"by" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/window/brigdoor/eastleft{dir = 8; req_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/armory) +"bz" = (/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},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"bB" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"bC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"bD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"bE" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/talon/deckone/secure_storage) +"bF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"bG" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"bH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/talon/deckone/armory) +"bI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"bK" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/structure/table/rack/steel,/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"bL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"bM" = (/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/steeldecal/steel_decals_central4,/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"bN" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"bO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bP" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/structure/table/rack/steel,/obj/item/weapon/grenade/spawnergrenade/manhacks/mercenary{pixel_x = -5; pixel_y = 4},/obj/item/device/spaceflare,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"bQ" = (/turf/simulated/wall,/area/talon/deckone/bridge_hallway) +"bR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/command{name = "Talon Secure Airlock"; req_one_access = list(301)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge_hallway) +"bS" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"bT" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/obj/structure/toilet,/obj/machinery/door/window/brigdoor/eastleft{dir = 8; req_access = list(301)},/turf/simulated/floor/tiled/white,/area/talon/deckone/bridge_hallway) +"bU" = (/obj/structure/sink{pixel_y = 22},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/talon/deckone/bridge_hallway) +"bV" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/bridge_hallway) +"bW" = (/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/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 32},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"bX" = (/obj/structure/sink{pixel_y = 22},/obj/structure/mirror{pixel_y = 32},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/talon/deckone/bridge_hallway) +"bY" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/talon/deckone/bridge_hallway) +"bZ" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"ca" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"cb" = (/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/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"cc" = (/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"cd" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"ce" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"cf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"cg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/bridge_hallway) +"ch" = (/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{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"ci" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"cj" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"ck" = (/obj/structure/barricade,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"cl" = (/turf/simulated/wall,/area/talon/deckone/port_solar) +"cm" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/deckone/port_solar) +"cn" = (/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/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"co" = (/turf/simulated/wall,/area/talon/deckone/starboard_solar) +"cp" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/deckone/starboard_solar) +"cq" = (/obj/machinery/light{dir = 4},/obj/machinery/suit_cycler/vintage/tengi,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"cr" = (/obj/structure/cable/yellow{icon_state = "16-0"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/sensor{name = "Talon Port Solar Panels"; name_tag = "TLN-PRT-SLR"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor/plating,/area/talon/deckone/port_solar) +"cs" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"ct" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/offmap_spawn{RCon_tag = "Talon Port SMES"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"cu" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/sensor{name = "Talon Port SMES Connection"; name_tag = "TLN-PRT-SMES"},/obj/machinery/camera/network/talon,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"cv" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/central_hallway) +"cw" = (/obj/machinery/vending/sovietsoda,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/central_hallway) +"cx" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cy" = (/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cz" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/bridge_hallway) +"cB" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cC" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cD" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/central_hallway) +"cE" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/central_hallway) +"cF" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/sensor{name = "Talon Starboard SMES Connection"; name_tag = "TLN-SBD-SMES"},/obj/machinery/camera/network/talon,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"cG" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/offmap_spawn{RCon_tag = "Talon Starboard SMES"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"cH" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 8},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"cI" = (/obj/structure/cable/yellow{icon_state = "16-0"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/sensor{name = "Talon Starboard Solar Panels"; name_tag = "TLN-SBD-SLR"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor/plating,/area/talon/deckone/starboard_solar) +"cJ" = (/obj/machinery/alarm/talon{dir = 8; pixel_x = 22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"cK" = (/obj/machinery/power/solar_control{icon_state = "solar"; dir = 4},/obj/structure/cable/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/port_solar) +"cL" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"cM" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"cN" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor/plating,/area/talon/deckone/port_solar) +"cO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/port_solar) +"cP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"cW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/starboard_solar) +"cX" = (/obj/structure/cable/green{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"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor/plating,/area/talon/deckone/starboard_solar) +"cY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"cZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"da" = (/obj/machinery/power/solar_control{icon_state = "solar"; dir = 8},/obj/structure/cable/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/starboard_solar) +"db" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"dc" = (/obj/structure/table/standard,/obj/fiftyspawner/phoron,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/port_solar) +"dd" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"de" = (/obj/machinery/light/small,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/port_solar) +"df" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_solar) +"dg" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dh" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"di" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"dj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/emblem/talon_big/center,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dk" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dl" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{dir = 4; icon_state = "light1"; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"dm" = (/obj/machinery/light/small,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/starboard_solar) +"dn" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_solar) +"do" = (/obj/structure/table/standard,/obj/fiftyspawner/phoron,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/starboard_solar) +"dp" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ds" = (/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dt" = (/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"du" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"dz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 10},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/emblem/talon_big,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dE" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dF" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"dG" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"dH" = (/turf/simulated/wall,/area/talon/deckone/brig) +"dI" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/glass_security{req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/brig) +"dJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dK" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dL" = (/turf/simulated/wall,/area/talon/deckone/central_hallway) +"dM" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"dO" = (/turf/simulated/wall,/area/talon/deckone/medical) +"dP" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/glass_medical{req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/medical) +"dQ" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"dR" = (/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"dS" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"dT" = (/obj/structure/bed/chair/bay/chair{icon_state = "bay_chair_preview"; dir = 8},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"dU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"dV" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/talon/deckone/brig) +"dW" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 4; pixel_y = 26},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"dX" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/machinery/recharger/wallcharger{pixel_x = 5; pixel_y = 24},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"dY" = (/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"dZ" = (/obj/machinery/vending/security{req_access = list(301); req_log_access = 301},/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/brig) +"ea" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eb" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ec" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ed" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ee" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 1},/obj/machinery/light_switch{dir = 4; icon_state = "light1"; pixel_x = -24},/obj/structure/sink{pixel_y = 22},/obj/structure/medical_stand/anesthetic,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"ef" = (/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eg" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 4},/obj/machinery/vending/medical_talon,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eh" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"ei" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/gun/burst,/obj/item/weapon/cell/device/weapon{pixel_x = -5; pixel_y = 2},/obj/item/weapon/cell/device/weapon,/obj/item/clothing/accessory/holster/waist,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"ek" = (/obj/structure/closet/crate/medical{name = "first-aid kits"},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"el" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"em" = (/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"en" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"eo" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/door/window/brigdoor/eastleft{dir = 8; req_access = list(301)},/obj/machinery/door/window/brigdoor/eastleft{req_access = list(301)},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"ep" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"eq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"er" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"es" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"et" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/glass_security{req_one_access = list(301)},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/brig) +"eu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ev" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ew" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"ex" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ey" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ez" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/glass_medical{req_one_access = list(301)},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/medical) +"eA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/structure/table/standard,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eE" = (/obj/structure/bed,/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"eF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"eG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/talon/deckone/brig) +"eH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"eI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"eJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"eK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eL" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/structure/sign/warning/nosmoking_1{pixel_x = -26},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 1},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eP" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"eR" = (/obj/machinery/door/airlock/maintenance/medical{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/medical) +"eS" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{id = "talon_brigblast1"},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"eT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"eV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"eW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eX" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"eY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"eZ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/department/medbay{pixel_x = 29},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/closet/medical_wall{pixel_x = -32},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/structure/closet/crate/medical{name = "medicine cooler"},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/structure/table/standard,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/surgicalapron,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 6},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/weapon/deck/cards,/obj/structure/table/standard,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"fe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm/talon{alarm_id = "anomaly_testing"; breach_detection = 0; dir = 8; frequency = 1439; pixel_x = 22; pixel_y = 0; report_danger_level = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"ff" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fj" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/recharger,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fk" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloorwhite,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/item/weapon/storage/firstaid/adv{pixel_x = 2; pixel_y = 5},/obj/machinery/alarm/talon{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fm" = (/obj/structure/table/standard,/obj/item/device/sleevemate,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fn" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/storage/belt/medical/emt,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"fo" = (/obj/structure/catwalk,/obj/structure/sign/warning/moving_parts{pixel_x = 30},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 8},/turf/space,/area/talon/maintenance/deckone_port) +"fq" = (/obj/item/modular_computer/console/preset/talon{icon_state = "console"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"fr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/bed/chair/bay/chair{icon_state = "bay_chair_preview"; dir = 8},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"fs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ft" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fw" = (/obj/effect/floor_decal/spline/plain{icon_state = "spline_plain"; dir = 1},/obj/machinery/door/airlock/multi_tile/glass{req_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/medical) +"fx" = (/obj/effect/floor_decal/spline/plain{icon_state = "spline_plain"; dir = 1},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/medical) +"fy" = (/obj/structure/catwalk,/obj/structure/sign/warning/moving_parts{pixel_x = -30},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 4},/turf/space,/area/talon/maintenance/deckone_starboard) +"fz" = (/obj/machinery/airlock_sensor{dir = 8; pixel_x = 28; pixel_y = 28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/ext_sensor,/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_port) +"fA" = (/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"fB" = (/obj/machinery/airlock_sensor{pixel_y = 28; req_one_access = list(301)},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 1; id_tag = "talon_port"; pixel_y = -30; req_one_access = list(301)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{icon_state = "map_vent_aux"; dir = 4},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"fC" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"fD" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/machinery/airlock_sensor{dir = 4; pixel_x = -28; pixel_y = 28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"fE" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"fF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"fG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"fI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"fJ" = (/turf/simulated/wall,/area/talon/deckone/workroom) +"fK" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/structure/table/standard,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"fL" = (/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"fM" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/structure/fitness/weightlifter,/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"fN" = (/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"fO" = (/obj/structure/table/standard,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"fP" = (/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"fQ" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"fR" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"fS" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/machinery/airlock_sensor{dir = 8; pixel_x = 28; pixel_y = 28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"fT" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"fU" = (/obj/machinery/airlock_sensor{pixel_y = 28; req_one_access = list(301)},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 1; id_tag = "talon_starboard"; pixel_y = -30; req_one_access = list(301)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{icon_state = "map_vent_aux"; dir = 8},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"fV" = (/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"fW" = (/obj/machinery/airlock_sensor{dir = 4; pixel_x = -28; pixel_y = 28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/ext_sensor,/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_starboard) +"fX" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"fY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"fZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"ga" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"gb" = (/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/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gc" = (/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/workroom) +"gd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"ge" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/workroom) +"gf" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"gg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"gh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"gi" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/item/weapon/storage/box/donut,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"gj" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"gk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/workroom) +"gl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"go" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/office/light,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gp" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gq" = (/obj/structure/table/standard,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"gr" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"gs" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"gu" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/structure/bedsheetbin,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"gv" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"gw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gy" = (/obj/effect/floor_decal/borderfloor,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gz" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/machinery/photocopier/faxmachine/talon,/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gA" = (/obj/effect/floor_decal/borderfloor,/obj/item/modular_computer/console/preset/talon{icon_state = "console"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gB" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gC" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"gD" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"gE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gF" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gG" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gI" = (/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"gJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/deckone/port_eng) +"gK" = (/obj/structure/catwalk,/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"gL" = (/obj/effect/floor_decal/borderfloor{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gM" = (/obj/machinery/vending/wallmed1{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gN" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/machinery/camera/network/talon,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gO" = (/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/catwalk_plated,/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) +"gP" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 30},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gQ" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/central_hallway) +"gR" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gS" = (/obj/effect/floor_decal/borderfloor{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gT" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/deckone/starboard_eng) +"gU" = (/turf/simulated/wall,/area/talon/deckone/port_eng_store) +"gV" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/sign/deck1{pixel_x = -30},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gW" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gX" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/sign/deck1{pixel_x = 31},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"gY" = (/turf/simulated/wall,/area/talon/deckone/starboard_eng_store) +"gZ" = (/obj/machinery/vending/tool{req_log_access = 301},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"ha" = (/obj/machinery/vending/engineering{req_access = newlist(); req_log_access = 301; req_one_access = list(301)},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hb" = (/obj/machinery/vending/engivend{req_access = newlist(); req_log_access = 301},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hc" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{alarms_hidden = 1; dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hd" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/electrical,/obj/item/stack/marker_beacon/thirty,/obj/item/weapon/pipe_dispenser,/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"he" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hi" = (/obj/structure/closet/crate/solar,/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_eng_store) +"hj" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{alarms_hidden = 1; dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_eng_store) +"hk" = (/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_eng_store) +"hl" = (/obj/machinery/drone_fabricator/talon,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/starboard_eng_store) +"hm" = (/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/starboard_eng_store) +"hn" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"ho" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hp" = (/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hq" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"hs" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/light_switch{dir = 1; on = 0; pixel_x = -10; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/port_eng_store) +"ht" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hu" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hz" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hA" = (/obj/structure/closet/crate/engineering,/obj/fiftyspawner/plastic,/obj/fiftyspawner/floor,/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_eng_store) +"hB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_eng_store) +"hC" = (/obj/machinery/light/small,/obj/machinery/light_switch{dir = 1; on = 0; pixel_x = -10; pixel_y = -24},/obj/effect/floor_decal/techfloor{icon_state = "techfloororange_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/talon/deckone/starboard_eng_store) +"hD" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/structure/catwalk,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"hE" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/machinery/alarm/talon{dir = 8; pixel_x = 22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"hF" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/spline/plain{icon_state = "spline_plain"; dir = 1},/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/port_eng_store) +"hG" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor/corner,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/spline/plain{icon_state = "spline_plain"; dir = 1},/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/starboard_eng_store) +"hP" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"hQ" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/power/thermoregulator,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/unary/freezer{anchored = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/unary/heater{anchored = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon/hidden,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) +"hX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"hY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) +"hZ" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/alarm/talon{alarm_id = "anomaly_testing"; breach_detection = 0; dir = 8; frequency = 1439; pixel_x = 22; pixel_y = 0; report_danger_level = 0},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ia" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ib" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) +"ic" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 8},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"id" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ie" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"if" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ig" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ih" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ii" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"ij" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) +"ik" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"il" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"im" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"in" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"io" = (/obj/machinery/door/firedoor/glass/talon/hidden,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ip" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iq" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"ir" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"is" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"it" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iu" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iv" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ix" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iy" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"iA" = (/turf/simulated/wall,/area/talon/deckone/port_eng) +"iB" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/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/spline/plain,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/port_eng) +"iC" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"iD" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"iE" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"iF" = (/turf/simulated/wall,/area/talon/deckone/starboard_eng) +"iG" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux,/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/spline/plain,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/starboard_eng) +"iH" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/portables_connector/aux{icon_state = "map_connector-aux"; dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"iI" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/deckone/port_eng) +"iJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/cap/hidden{icon_state = "cap"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"iK" = (/obj/machinery/oxygen_pump{pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"iL" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"iM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/port_eng) +"iN" = (/obj/structure/ladder/up,/turf/simulated/floor/tiled/steel_grid,/area/talon/deckone/central_hallway) +"iO" = (/obj/effect/floor_decal/steeldecal/steel_decals8,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"iP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/starboard_eng) +"iQ" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"iR" = (/obj/machinery/oxygen_pump{pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"iS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/cap/hidden{icon_state = "cap"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"iT" = (/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/deckone/starboard_eng) +"iU" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/portables_connector/aux{icon_state = "map_connector-aux"; dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"iV" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/deckone/port_eng) +"iW" = (/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 4},/turf/simulated/floor/plating,/area/talon/deckone/port_eng) +"iX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"iY" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"iZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"ja" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"jb" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jc" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"je" = (/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{icon_state = "up-scrubbers"; dir = 8},/obj/structure/disposalpipe/up{dir = 8},/turf/simulated/floor/plating,/area/talon/deckone/starboard_eng) +"jf" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/deckone/starboard_eng) +"jg" = (/obj/machinery/airlock_sensor{dir = 4; pixel_x = -28; req_one_access = list(301)},/obj/machinery/atmospherics/unary/vent_pump/aux{icon_state = "map_vent_aux"; dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"jh" = (/obj/structure/catwalk,/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"ji" = (/turf/simulated/wall/rshull,/area/talon/deckone/port_eng) +"jj" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jl" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jo" = (/obj/structure/cable/green{d2 = 8; dir = 2; icon_state = "0-8"},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jp" = (/obj/structure/catwalk,/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"jq" = (/obj/structure/catwalk,/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"jr" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"js" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"ju" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jv" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jz" = (/obj/structure/catwalk,/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"jA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jD" = (/obj/machinery/alarm/talon{alarm_id = "anomaly_testing"; breach_detection = 0; dir = 8; frequency = 1439; pixel_x = 22; pixel_y = 0; report_danger_level = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jE" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"jF" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jJ" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 8; frequency = 1380; id_tag = "talon_boatbay"; pixel_x = 28},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"jL" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{icon_state = "map-fuel"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jN" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 10},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jO" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 6},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{icon_state = "map-fuel"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 10},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jS" = (/obj/machinery/atmospherics/binary/pump/fuel,/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jT" = (/obj/machinery/atmospherics/portables_connector/fuel{icon_state = "map_connector-fuel"; dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"jU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"jV" = (/obj/machinery/alarm/talon{dir = 4; pixel_x = -35; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"jW" = (/obj/machinery/atmospherics/portables_connector/fuel{icon_state = "map_connector-fuel"; dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jX" = (/obj/machinery/atmospherics/binary/pump/fuel,/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"jY" = (/turf/simulated/wall/rshull,/area/talon/deckone/starboard_eng) +"jZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{icon_state = "map-fuel"; dir = 8},/turf/simulated/wall/rshull,/area/talon/deckone/port_eng) +"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 4},/turf/simulated/wall/rshull,/area/talon/deckone/port_eng) +"kc" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 10},/turf/simulated/wall/rshull,/area/talon/deckone/port_eng) +"kd" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 6},/turf/simulated/wall/rshull,/area/talon/deckone/starboard_eng) +"ke" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{icon_state = "map-fuel"; dir = 1},/turf/simulated/wall/rshull,/area/talon/deckone/starboard_eng) +"kf" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 4},/turf/simulated/wall/rshull,/area/talon/deckone/starboard_eng) +"kg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{icon_state = "intact-fuel"; dir = 9},/turf/simulated/wall/rshull,/area/talon/deckone/starboard_eng) +"kh" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/turf/simulated/floor/reinforced/airless,/area/talon/deckone/port_eng) +"ki" = (/obj/machinery/door/blast/regular{dir = 8; id = "very_fake"; name = "Shuttle Bay Doors"},/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) +"kj" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/turf/simulated/floor/reinforced/airless,/area/talon/deckone/starboard_eng) +"kk" = (/obj/structure/catwalk,/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"kl" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_port) +"km" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_starboard) +"kn" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"ko" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"kp" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"kq" = (/obj/machinery/fitness/punching_bag,/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"kr" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/closet/crate/medical/blood,/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus,/obj/item/weapon/reagent_containers/blood/prelabeled/OMinus,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"ks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"kt" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"kv" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; dir = 2; icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"kw" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kx" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ky" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6{icon_state = "steel_decals_central6"; dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kz" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kA" = (/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/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kB" = (/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kC" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kD" = (/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/steeldecal/steel_decals_central1{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kE" = (/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kF" = (/obj/machinery/alarm/talon{dir = 1; pixel_y = -25},/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kG" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kH" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"kI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/bridge_hallway) +"kJ" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kK" = (/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"kL" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"kM" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"kN" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"kO" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kP" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"kS" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/cell/device/weapon{pixel_x = -5; pixel_y = 2},/obj/item/weapon/cell/device/weapon{pixel_x = -5; pixel_y = 2},/obj/item/weapon/cell/device/weapon,/obj/item/clothing/accessory/holster/waist,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"kT" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"kU" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/gun,/obj/item/clothing/accessory/holster/machete,/obj/item/weapon/material/knife/machete,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"kV" = (/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"kX" = (/obj/machinery/door/airlock/maintenance/sec{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/deckone/brig) +"kY" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/maintenance/engi{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/deckone/starboard_eng_store) +"kZ" = (/obj/structure/catwalk,/obj/machinery/suit_storage_unit,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"la" = (/obj/structure/catwalk,/obj/machinery/suit_storage_unit,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"lb" = (/turf/simulated/wall/shull,/area/shuttle/talonboat) +"lc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/shuttle/talonboat) +"ld" = (/obj/machinery/computer/shuttle_control/explore/talonboat,/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"le" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"lf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/shuttle/talonboat) +"lg" = (/obj/structure/bed/chair/bay/chair{icon_state = "bay_chair_preview"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/shuttle/talonboat) +"lh" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 8; frequency = 1380; id_tag = "talonboat_docker"; pixel_x = 28},/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"li" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"lj" = (/obj/structure/fuel_port{dir = 4; pixel_x = -30},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector/aux{icon_state = "map_connector-aux"; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"lk" = (/obj/machinery/airlock_sensor{dir = 1; pixel_x = 28; pixel_y = -28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/machinery/atmospherics/pipe/simple/hidden/aux{icon_state = "intact-aux"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"ll" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"ln" = (/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden/aux,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/tiled/techmaint,/area/shuttle/talonboat) +"lo" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"lp" = (/obj/effect/shuttle_landmark/shuttle_initializer/talonboat,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"lr" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 8; id_tag = "talon_boat"; pixel_x = 28},/obj/machinery/atmospherics/unary/vent_pump/aux{icon_state = "map_vent_aux"; dir = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"ls" = (/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"lt" = (/obj/effect/map_helper/airlock/door/simple,/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/tiled/techmaint,/area/shuttle/talonboat) +"lu" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"lw" = (/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"lz" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/machinery/computer/shuttle_control/explore/talonboat{icon_state = "computer"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"lA" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"lB" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"lC" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"lW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"mh" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"mm" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"mv" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"mM" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/space,/area/talon/maintenance/deckone_port_fore_wing) +"np" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/shuttle/talonboat) +"ns" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 6},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"nv" = (/obj/machinery/door/blast/regular/open{dir = 4; id = "talon_sensor"},/turf/space,/area/talon/maintenance/deckone_port) +"nI" = (/obj/structure/catwalk,/obj/structure/sign/warning/moving_parts{pixel_x = 30},/turf/space,/area/talon/maintenance/deckone_port_fore_wing) +"nL" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"nR" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{icon_state = "intact"; dir = 4},/turf/space,/area/talon/maintenance/deckone_starboard_fore_wing) +"oh" = (/obj/effect/shuttle_landmark{landmark_tag = "talon_aft"; name = "ITV Talon - Aft"},/turf/space,/area/space) +"oi" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel,/area/talon/deckone/armory) +"oQ" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"oR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 9},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"oW" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"pz" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"qA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/aux,/turf/simulated/floor/tiled/techmaint,/area/shuttle/talonboat) +"qM" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 9},/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"qN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"qQ" = (/obj/effect/floor_decal/emblem/talon,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"qT" = (/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"rg" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"ry" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"sk" = (/obj/structure/catwalk,/obj/structure/sign/warning/airlock{pixel_x = 32},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"su" = (/obj/structure/catwalk,/obj/structure/sign/warning/airlock{pixel_x = -31},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"sz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"sB" = (/obj/structure/catwalk,/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/talon/maintenance/deckone_port) +"sD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"sE" = (/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/obj/machinery/airlock_sensor/airlock_exterior/shuttle{pixel_x = 28; pixel_y = -4},/obj/effect/map_helper/airlock/sensor/ext_sensor,/turf/simulated/floor/tiled/techmaint,/area/shuttle/talonboat) +"sK" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 6},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"sM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"tL" = (/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 9},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"uL" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"vc" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"vl" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"vn" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"vs" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"vv" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"wk" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall,/area/talon/deckone/central_hallway) +"xk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"xo" = (/obj/machinery/alarm/talon{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/starboard_eng_store) +"xI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/emblem/talon,/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"xV" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/cell/device/weapon{pixel_x = -5; pixel_y = 2},/obj/item/weapon/cell/device/weapon,/obj/item/clothing/accessory/holster/waist,/turf/simulated/floor/tiled/dark,/area/talon/deckone/armory) +"yg" = (/turf/space,/area/talon/deckone/starboard_eng) +"ym" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{dir = 4; id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"yn" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/space,/area/talon/maintenance/deckone_port_aft_wing) +"yu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 1},/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"yy" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/space,/area/talon/maintenance/deckone_starboard_aft_wing) +"yN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/button/remote/blast_door{dir = 4; id = "talon_brigblast1"; name = "blast door control"; pixel_x = -28},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"zC" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"zO" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"zT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"AE" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"AM" = (/obj/structure/sign/warning/hot_exhaust{pixel_y = 29},/turf/space,/area/space) +"AP" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"Bo" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"Bs" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"Bz" = (/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"BR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"Cm" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/dark,/area/talon/deckone/bridge) +"CN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/deck1{pixel_y = 27},/obj/structure/sign/directions/bridge{icon_state = "direction_bridge"; dir = 1; pixel_y = 41},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"CT" = (/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"Ds" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"Dw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"DF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/deck1{pixel_y = 27},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"DQ" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"DT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"ET" = (/obj/effect/floor_decal/emblem/talon,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"Fc" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"FB" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"FJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"FZ" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"Gj" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"Gu" = (/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"Gy" = (/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"GF" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel,/area/talon/deckone/secure_storage) +"GP" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/turf/simulated/floor/reinforced/airless,/area/talon/deckone/starboard_eng) +"Hb" = (/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_starboard_fore_wing) +"Hp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/cap/hidden{icon_state = "cap"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"Im" = (/obj/machinery/atmospherics/portables_connector/fuel{icon_state = "map_connector-fuel"; dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"IF" = (/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 5},/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"Ji" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"Jk" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"JI" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/turf/simulated/floor/reinforced/airless,/area/talon/deckone/port_eng) +"JJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"JL" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"JW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"JZ" = (/obj/structure/table/rack/steel,/obj/machinery/camera/network/talon,/turf/simulated/floor/tiled/dark,/area/talon/deckone/secure_storage) +"KM" = (/obj/effect/shuttle_landmark{landmark_tag = "talon_starboard"; name = "ITV Talon - Starboard"},/turf/space,/area/space) +"KN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"La" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"Le" = (/obj/effect/shuttle_landmark{landmark_tag = "talon_port"; name = "ITV Talon - Port"},/turf/space,/area/space) +"Lo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"Lt" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{icon_state = "intact"; dir = 8},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{icon_state = "intact"; dir = 8},/turf/space,/area/talon/maintenance/deckone_port_fore_wing) +"Ly" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/window/brigdoor/eastleft{dir = 8; req_access = list(301)},/obj/machinery/door/window/brigdoor/eastleft{req_access = list(301)},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"LJ" = (/obj/machinery/shower,/obj/item/weapon/soap/deluxe,/obj/structure/curtain,/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/bridge_hallway) +"LX" = (/obj/effect/floor_decal/emblem/talon,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"Ml" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"Mm" = (/obj/machinery/shipsensors{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 9},/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/turf/simulated/floor/greengrid/airless,/area/talon/maintenance/deckone_port) +"Mu" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"ME" = (/obj/effect/shuttle_landmark{landmark_tag = "talon_fore"; name = "ITV Talon - Fore"},/turf/space,/area/space) +"MJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 6},/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"MW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 6},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"Nu" = (/obj/structure/bed/chair/bay/comfy/yellow{icon_state = "bay_comfychair_preview"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/deckone/bridge) +"NR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/button/remote/blast_door{dir = 4; id = "talon_brigblast2"; name = "blast door control"; pixel_x = -28},/turf/simulated/floor/tiled/steel,/area/talon/deckone/brig) +"NY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"On" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"Ow" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"OF" = (/obj/structure/sign/periodic{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"OR" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"OS" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/space,/area/talon/deckone/port_eng) +"Pi" = (/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_port_fore_wing) +"PG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"PY" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/workroom) +"Qi" = (/obj/machinery/door/blast/regular/open{dir = 4; id = "talon_windows"},/turf/space,/area/talon/deckone/bridge) +"QJ" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/space,/area/talon/deckone/starboard_eng) +"Rc" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"Rv" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"RD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 5},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"Sa" = (/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"SJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_aft_wing) +"SX" = (/turf/space,/area/talon/deckone/port_eng) +"TP" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_aft_wing) +"Ue" = (/obj/structure/catwalk,/obj/structure/sign/warning/moving_parts{pixel_x = -30},/turf/space,/area/talon/maintenance/deckone_starboard_fore_wing) +"Ui" = (/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/space,/area/talon/maintenance/deckone_starboard_fore_wing) +"UT" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{id = "talon_brigblast2"},/turf/simulated/floor/tiled/dark,/area/talon/deckone/brig) +"VS" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"Wh" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/structure/vehiclecage/spacebike,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"Ww" = (/obj/effect/floor_decal/emblem/talon_big{icon_state = "talon_big"; dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"WB" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel,/area/talon/deckone/central_hallway) +"WE" = (/obj/structure/sign/poster{icon_state = ""; dir = 1},/turf/simulated/wall,/area/talon/deckone/central_hallway) +"WI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/talon/deckone/central_hallway) +"WL" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"WS" = (/obj/machinery/door/airlock/medical{req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/white,/area/talon/deckone/medical) +"Xh" = (/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"Xi" = (/obj/machinery/atmospherics/portables_connector/fuel{icon_state = "map_connector-fuel"; dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/port_eng) +"Xq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 10},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"XC" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_starboard) +"XQ" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"XT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{icon_state = "intact"; dir = 9},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_starboard_fore_wing) +"Yg" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/talon/maintenance/deckone_port) +"Yt" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/deckone/workroom) +"Yv" = (/obj/effect/floor_decal/emblem/talon,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/deckone_port_fore_wing) +"YG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/cap/hidden{icon_state = "cap"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/talon/deckone/starboard_eng) +"YS" = (/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_port_aft_wing) +"Za" = (/obj/structure/catwalk,/turf/space,/area/talon/maintenance/deckone_starboard_aft_wing) +"Zv" = (/obj/structure/closet/emcloset,/obj/structure/sign/department/bridge{pixel_y = 31},/turf/simulated/floor/tiled/steel_ridged,/area/talon/deckone/bridge_hallway) +"ZV" = (/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/disposalpipe/segment,/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/deckone/central_hallway) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaMEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababQiQiQiababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacadadadacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeafagahaiajakacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacalamanaoapNuaqacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacarasanxIapasatacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCnvaCaaaaabacauavanaoapawaxacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCMmaCaaaaabacayazansMCmlsaBacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCymaCabababacaDaEaFaGaHaIaJacabababaKaKaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaLaMacacacacacacacaNacacacacacacacaOjpaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasKqNqNLtaCaLaRaSaSJZaUaVaRaWaXZvaYaZbabbkSkTaYbdaKnRvnvnDTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccccoWzOBRqNXqnIaCaLaRbebqbqbfbhbibjbkblbmbnbgkKkKkLaYaPaKUeMWvnqMFBBsdtdtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccccccccccYvRcOnszMlzTmMLaYgaRaSaSaTbobtbubvbwbxbybzbpbcxVkTaYXCxkUiyuqTCTpzAELXdtdtdtdtdtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccccmmVSMJJWoRPibrmvaRkMbqbqbqbDbEbGbFkIbHbIkKkKkKkNaYFcbBHbDwvnAPXQORdtdtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRDqNqNLtaCmvaRaSaSbKGFbLaRbNbMkvaYbOoibPeikUaYFcaKnRvnvnXTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCmvaRaRaRaRbQbQbQbQbRbQbQbQbQaYaYaYaYFcaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCWLaMaMaMaMLJbTbUbVbWbVbXbYbQaOaOaOaODQaKaKaKaKaKaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCjhaLaLaLaLmvaLaLcaaMaMaMaMbQcbbQaOaOaOaPcdaPaPFcaPaPaPaPjpaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCnLMuMuMuMusBMuMucecfcfcfcfcgchcgcicicicicjvvvvXhvvvvvvvvGuaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCmvckclclcmclclclaMaMaMaMaMbQcnbQaOaOaOaOaOcocococpcocoaPFcaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCWLaMclcrcsctcuclcvcwcxcyczbQcAbQcBcycCcDcEcocFcGcHcIcoaODQaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCmvcJclcKcLcMcNcOcPcQcQcRcSDFcTCNcUcRcQcQcVcWcXcYcZdacodbFcaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCmvaLcldcdddedfcldgdhcycyewtLeYIFfHcycydhdkcodldmdndocoaPFcaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCmvaLclclclclclcldpdqcydrdiWwdjSaWIdriOdqFJcocococococoaPFcaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCmvaLbSaLaLdFaLbSdudvdwdxdydzdAnssDdBdCdDdEbZaPdGaPaPbZaPFcaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYSaCmvaLdHdHdHdHdHdHdHdIdHdHdJdKdLdMdNdOdOdPdOdOdOdOdOdOdOaPFcaKZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaargDsmhYSaCmvdQdHdSdTdUdVdWdXesdZdHeaebdLeceddOeeefegehkVdOaAekdOelFcaKZaJiBoJJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIJLOwRvYSaCmvaLdHknemeneoepeqergdeteuevgjexeyezeAeBeBeBeCdOefkrdOaPFcaKZaJkGjoQdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIuLTPLoynLaGyaLdHeEemeFeGeHdYeIeJdHeKlWkyvceNdOeOefePefeQWSefefeRaPzCKNyyNYrySJdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIYSbraLaLdHdHeSdHdHyNdYeIeVdHeWeXkFeZfadOfbefefeffcdOjVefdObdaPbBZadRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIYSYSYSaCaLaLdHdSemkoLyeTdYfdfedHfffgdLfhfidOfjefeffkfldOfmfndOjqaPaKZaZaZadRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIklaCaCaCaLaLdHdSememeGeTdYfqfrdHfsftWEfufvdOdOfwfxdOdOdOdOdOdOaPaPaKaKaKkmdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLeaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIqQgIfzfAfBfCfDfEdHdHUTdHdHNRdYdYfFdHfGevkGexfIfJfKktktfMfNfOfQOFfJfRfSfTfUfVfWETdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaKMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIfoaCaCaCsufXdHeEemfYdVfZdYdYgadHfGeLkzeMgbgcglfLfLfLfPgqkpfPgegfskaKaKaKfydRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIYSYSYSaCkZfXdHknemggeoghdYdYgidHfGeXkHeZeygkksgmgngogpYtfPfPfJgflaaKZaZaZadRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIYSaCaCgrdHdSdTjUeGgsaQgugvdHfGebdLecgwfJgxgygzgAgBgCPYkqfJgDaKaKZadRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIYSbraLfXdHdHdHdHdHkXdHdHdHdHgEgFdLgGgHfJfJfJfJfJfJfJfJfJfJgfaPbBZadRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIgIgIgIgIgIYSbraLfXbSaLaLgKaLaLbSgLgMgNgOcygPcyZVgQgRgSbZaPaPkkaPaPbZgfaPbBZadRdRdRdRdRdRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIgIgIgIgIgIYSaCaLfXgUgUgUgUgUgUgUgVgWcyhehfcyhghhcygWgXgYgYgYkYgYgYgYgfaPaKZadRdRdRdRdRdRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagIgIgIYSaCaLfXgUgZhahbhchdgUcBcycCkAkBkCkBkDcCcyczgYhihjhkhlhmgYgfaPaKZadRdRdRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYSaCaLhngUhohphqhrhsgUhthucyhvhwcyhxhycyhuhzgYhAhBhCxohmgYhDaPaKZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaLhEgUgUgUgUhFgUgUhGhHhIhJhMhKhXhLhIiahNgYgYhOgYgYgYgYhPaPaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaLfXdLhQhRhShThUhVhWkQwkhYdLhZdLhYwkkRibicidieifigihdLgfbdaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCjziiijikilimininioipPGbsbAbAbAbAbAiqliitiuiviviwixiyijizaPaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaLaLiAiAiBiAiAiAiAlzFZirlblclclclbisllBziFiFiFiFiGiFiFaPaPaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaLaLiAiHiIiJiKiLiMvlvsirlbldlenplbislokEiPiQiRiSiTiUiFaPaPaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaLaLiViWiXiYiZiLiMWBjairlflglglhlbisloiNiPiQjbjcjdjejfaPaPaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCbCbCjijjjkjliZiLiAdLjairlflglglpltlujJdLiFiQjbjmjnjojYbJbJaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajijrjsiZjuiLiAwkjEirlbljlklwlbiskOwkiFiQjvjbjxcqjYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagJjAjBHpjCjDiAWhjairlblblnlblbiskJlBiFjFjGYGjHjIgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagJjLjMjMjMjNiAkPkwirlbjgqAlrlbiskxdsiFjOjPjPjPjQgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajijSjTjTjTXiiAkPcyirlblbsElblbiscydsiFImjWjWjWjXjYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajijZkbkbkcjijilAcyiCiDiDiDiDiDiEcylCjYkdkfkfkekgjYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajikhJIjikhJIjikikikikikikikikikikikijYkjGPjYkjGPjYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAMOSSXaaOSSXAMaaaaaaaaaaaaaaaaaaaaaaAMQJygaaQJygAMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaohaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/maps/tether/submaps/offmap/talon2.dmm b/maps/tether/submaps/offmap/talon2.dmm index 86b9c3669f..d5a49f1f1b 100644 --- a/maps/tether/submaps/offmap/talon2.dmm +++ b/maps/tether/submaps/offmap/talon2.dmm @@ -2355,6 +2355,7 @@ dir = 8; pixel_y = 0 }, +/obj/machinery/suit_cycler/vintage/tengi, /turf/simulated/floor/wood, /area/talon/decktwo/eng_room) "ea" = ( @@ -2410,9 +2411,7 @@ dir = 8; pixel_x = 0 }, -/obj/machinery/suit_cycler/pilot{ - req_access = list(301) - }, +/obj/machinery/suit_cycler/vintage/tcrew, /turf/simulated/floor/wood, /area/talon/decktwo/pilot_room) "eh" = ( @@ -3238,6 +3237,7 @@ dir = 4; pixel_y = 0 }, +/obj/machinery/suit_cycler/vintage/tmedic, /turf/simulated/floor/wood, /area/talon/decktwo/med_room) "fC" = ( @@ -3278,6 +3278,7 @@ dir = 8; pixel_x = 0 }, +/obj/machinery/suit_cycler/vintage/tguard, /turf/simulated/floor/wood, /area/talon/decktwo/sec_room) "fG" = ( @@ -4864,6 +4865,10 @@ }, /turf/simulated/floor/reinforced/airless, /area/talon/maintenance/decktwo_solars) +"nR" = ( +/obj/machinery/suit_cycler/vintage/tcaptain, +/turf/simulated/floor/wood, +/area/talon/decktwo/cap_room) "ol" = ( /obj/structure/sign/poster{ icon_state = ""; @@ -14615,7 +14620,7 @@ ap aC az SU -aM +nR WZ aM bu diff --git a/maps/tether/submaps/offmap/talon2.dmm.before b/maps/tether/submaps/offmap/talon2.dmm.before new file mode 100644 index 0000000000..4d9fc89736 --- /dev/null +++ b/maps/tether/submaps/offmap/talon2.dmm.before @@ -0,0 +1,665 @@ +"aa" = (/turf/space,/area/space) +"ab" = (/turf/simulated/wall/rshull,/area/talon/decktwo/bridge_upper) +"ac" = (/turf/simulated/wall,/area/talon/decktwo/bridge_upper) +"ad" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/decktwo/bridge_upper) +"ae" = (/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"af" = (/obj/structure/railing,/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"ag" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"ah" = (/obj/machinery/computer/ship/navigation,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/bridge_upper) +"ai" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"aj" = (/obj/structure/railing,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"ak" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"al" = (/obj/structure/table/steel,/obj/item/weapon/paper/dockingcodes,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/bridge_upper) +"am" = (/obj/structure/bed/chair/bay/comfy/blue{icon_state = "bay_comfychair_preview"; dir = 1; pixel_y = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/bridge_upper) +"an" = (/obj/machinery/light{dir = 4},/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"ao" = (/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"ap" = (/turf/simulated/wall/rshull,/area/talon/decktwo/cap_room) +"aq" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"ar" = (/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"as" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"at" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"au" = (/obj/structure/cable/green{d2 = 8; dir = 2; icon_state = "0-8"},/obj/machinery/power/apc/talon{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"av" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/talon/decktwo/bridge_upper) +"aw" = (/turf/simulated/wall,/area/talon/decktwo/bar) +"ax" = (/turf/simulated/wall/rshull,/area/talon/decktwo/bar) +"ay" = (/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/wall,/area/talon/decktwo/bridge_upper) +"az" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"aA" = (/obj/structure/table/woodentable,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"aB" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/command{name = "Talon Secure Airlock"; req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/cap_room) +"aC" = (/turf/simulated/wall,/area/talon/decktwo/cap_room) +"aD" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/central_hallway) +"aE" = (/obj/structure/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/vending/nifsoft_shop,/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/central_hallway) +"aF" = (/obj/structure/bed/chair/bay/chair,/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"aG" = (/obj/machinery/vending/wallmed1{emagged = 1; pixel_y = 32; shut_up = 0},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"aH" = (/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 6},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aI" = (/obj/structure/table/standard,/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aJ" = (/obj/machinery/vending/boozeomat{density = 0; pixel_y = 32; req_access = list(301); req_log_access = 301},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aK" = (/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"aL" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/obj/structure/closet/secure_closet/talon_captain,/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"aM" = (/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"aN" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"aO" = (/obj/structure/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/borderfloor{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"aP" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"aQ" = (/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"aR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aS" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/weapon/storage/dicecup/loaded,/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aT" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aU" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"aV" = (/obj/structure/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/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"aW" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/talon/decktwo/bar) +"aX" = (/obj/structure/bed/chair/bay/chair{icon_state = "bay_chair_preview"; dir = 1},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"aY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"aZ" = (/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"ba" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/decktwo/cap_room) +"bb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bd" = (/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{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"be" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock/command{id_tag = "talon_capdoor"; name = "Talon Secure Airlock"; req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/cap_room) +"bf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bi" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bj" = (/obj/machinery/chemical_dispenser/bar_alc/full{icon_state = "booze_dispenser"; dir = 8},/obj/structure/table/marble,/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/decktwo/bar) +"bl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"bm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bo" = (/obj/structure/cable/green{icon_state = "1-2"; dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bp" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/department/commander{pixel_x = -28},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bq" = (/obj/structure/table/standard,/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"br" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bs" = (/obj/machinery/chemical_dispenser/bar_soft/full{dir = 8},/obj/structure/table/marble,/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"bu" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bv" = (/obj/structure/cable/green,/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bw" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bx" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/bed/chair/bay/chair{icon_state = "bay_chair_preview"; dir = 1},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"by" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bz" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bA" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"bB" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"bC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bE" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bG" = (/obj/structure/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/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/department/bar{pixel_x = 29},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"bI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"bJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"bK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/woodentable,/obj/item/modular_computer/tablet/preset/custom_loadout/advanced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/woodentable,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bM" = (/obj/item/modular_computer/console/preset/talon,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bO" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/bar) +"bP" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"bQ" = (/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_starboard) +"bR" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"bS" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{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/steeldecal/steel_decals_central4,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"bU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/bar) +"bV" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"bW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/oxygen_pump{icon_state = "oxygen_tank"; dir = 1; pixel_y = -30},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"bX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/spline/plain{dir = 9},/obj/machinery/vending/food{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/talon/decktwo/bar) +"bY" = (/obj/machinery/vending/coffee{dir = 1},/obj/effect/floor_decal/spline/plain{icon_state = "spline_plain"; dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/talon/decktwo/bar) +"bZ" = (/obj/machinery/vending/dinnerware{icon_state = "dinnerware"; dir = 1},/obj/effect/floor_decal/spline/plain{icon_state = "spline_plain"; dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/talon/decktwo/bar) +"ca" = (/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"cb" = (/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_port) +"cc" = (/turf/simulated/wall,/area/talon/decktwo/central_hallway) +"cd" = (/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,/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/central_hallway) +"ce" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/solar,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"cf" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"cg" = (/obj/structure/cable/heavyduty{icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_port) +"ch" = (/obj/structure/lattice,/obj/structure/cable/yellow{icon_state = "32-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/open,/area/talon/maintenance/decktwo_port) +"ci" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/talon/maintenance/decktwo_port) +"cj" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 32; d2 = 8; icon_state = "32-8"},/turf/simulated/open,/area/talon/maintenance/decktwo_port) +"ck" = (/obj/structure/lattice,/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cl" = (/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cm" = (/obj/machinery/light{dir = 1},/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cn" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/structure/sign/deck2{pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"co" = (/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/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cp" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 32; d2 = 4; icon_state = "32-4"},/turf/simulated/open,/area/talon/maintenance/decktwo_starboard) +"cq" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/talon/maintenance/decktwo_starboard) +"cr" = (/obj/structure/lattice,/obj/structure/cable/yellow{icon_state = "32-4"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/open,/area/talon/maintenance/decktwo_starboard) +"cs" = (/obj/structure/cable/heavyduty{dir = 2; icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_starboard) +"ct" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"cu" = (/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/heavyduty{icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"cv" = (/obj/structure/cable/heavyduty{icon_state = "0-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"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"cw" = (/obj/structure/cable/heavyduty{dir = 2; icon_state = "0-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"cx" = (/obj/structure/railing{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"cy" = (/obj/structure/railing,/obj/structure/lattice,/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cz" = (/obj/structure/railing,/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cA" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cC" = (/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/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cE" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/talon/decktwo/central_hallway) +"cF" = (/turf/simulated/wall,/area/talon/maintenance/decktwo_starboard) +"cG" = (/obj/structure/railing{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"cH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"cI" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/talon,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon/hidden,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/decktwo/central_hallway) +"cR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/talon,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cW" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"cX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"cY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"cZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"da" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"db" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/talon/hidden,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 4},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/oxygen_pump{icon_state = "oxygen_tank"; dir = 1; pixel_y = -30},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"de" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"df" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green,/obj/machinery/power/apc/talon{dir = 2; name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/directions/evac{pixel_y = -38},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dh" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"di" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/department/shield{pixel_y = -31},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/oxygen_pump{icon_state = "oxygen_tank"; dir = 1; pixel_y = -30},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 8},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 8},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"do" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"dp" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dr" = (/turf/simulated/wall,/area/talon/decktwo/eng_room) +"ds" = (/turf/simulated/wall,/area/talon/decktwo/tech) +"dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Talon Secure Airlock"; req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/tech) +"du" = (/turf/simulated/wall,/area/talon/decktwo/pilot_room) +"dv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dy" = (/obj/structure/table/woodentable,/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/engineer,/turf/simulated/floor/carpet,/area/talon/decktwo/eng_room) +"dz" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/talon/decktwo/eng_room) +"dA" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/carpet,/area/talon/decktwo/eng_room) +"dB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/structure/table/standard,/obj/item/weapon/paper/talon_shields,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/machinery/computer/ship/helm{req_one_access = list(301)},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dD" = (/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 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/railing,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/table/standard,/obj/item/device/bluespaceradio/talon_prelinked,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dG" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet,/area/talon/decktwo/pilot_room) +"dH" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/turf/simulated/floor/carpet,/area/talon/decktwo/pilot_room) +"dI" = (/obj/structure/table/woodentable,/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot,/turf/simulated/floor/carpet,/area/talon/decktwo/pilot_room) +"dJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"dK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dL" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/carpet,/area/talon/decktwo/eng_room) +"dM" = (/turf/simulated/floor/carpet,/area/talon/decktwo/eng_room) +"dN" = (/obj/machinery/alarm/talon{dir = 8; pixel_x = 22; pixel_y = 0},/obj/effect/landmark/start{name = "Talon Engineer"},/turf/simulated/floor/carpet,/area/talon/decktwo/eng_room) +"dO" = (/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/structure/table/standard,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/railing,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dS" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"dT" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/landmark/start{name = "Talon Pilot"},/turf/simulated/floor/carpet,/area/talon/decktwo/pilot_room) +"dU" = (/turf/simulated/floor/carpet,/area/talon/decktwo/pilot_room) +"dV" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/carpet,/area/talon/decktwo/pilot_room) +"dW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm/talon{dir = 8; pixel_x = 22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"dY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/directions/roomnum{icon_state = "roomnum"; dir = 4; pixel_x = 32; pixel_y = -9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"dZ" = (/obj/machinery/suit_cycler/vintage/tcaptain,/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"ea" = (/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eb" = (/obj/machinery/door/airlock/command{id_tag = "talon_engdoor"; name = "Talon Secure Airlock"; req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/eng_room) +"ec" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"ed" = (/obj/structure/cable/green,/obj/machinery/power/shield_generator/charged,/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/tech) +"ee" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"ef" = (/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/obj/machinery/pointdefense_control{id_tag = "talon_pd"},/turf/simulated/floor/bluegrid,/area/talon/decktwo/tech) +"eg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/suit_cycler/vintage/tengi,/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eh" = (/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"ei" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"ej" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/structure/sign/directions/roomnum{pixel_x = -31; pixel_y = -9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"ek" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"el" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{icon_state = "steel_decals_central4"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/airlock{id_tag = "talon_engdoor"; name = "Engineer's Cabin"; req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/eng_room) +"en" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"ep" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eq" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/machinery/computer/ship/engines{dir = 1; icon_state = "computer"},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"er" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"es" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/machinery/light_switch{dir = 1; pixel_x = 2; pixel_y = -28},/obj/structure/sign/directions/evac{pixel_y = -38},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"et" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/railing{dir = 1},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"eu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light/small,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/tech) +"ev" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"ew" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"ex" = (/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 = 6},/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"ey" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/door/airlock{id_tag = "talon_pilotdoor"; name = "Pilot's Cabin"; req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/pilot_room) +"ez" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"eA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"eB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"eC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"eD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/standard,/obj/machinery/button/remote/airlock{dir = 8; id = "talon_engdoor"; name = "Door Bolts"; pixel_x = -28; specialfunctions = 4},/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eE" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/talon_engineer,/turf/simulated/floor/wood,/area/talon/decktwo/eng_room) +"eG" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/machinery/suit_cycler/vintage/tcrew,/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"eH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"; dir = 1},/obj/machinery/door/airlock/command{name = "Talon Secure Airlock"; req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/tech) +"eI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/talon_pilot,/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"eJ" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"eK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/standard,/obj/machinery/button/remote/airlock{dir = 4; id = "talon_pilotdoor"; name = "Door Bolts"; pixel_x = 28; specialfunctions = 4},/turf/simulated/floor/wood,/area/talon/decktwo/pilot_room) +"eL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"eM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"eN" = (/turf/simulated/wall/rpshull,/area/talon/decktwo/lifeboat) +"eO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"; dir = 1},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/lifeboat) +"eP" = (/obj/structure/cable/heavyduty{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"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"eQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"eR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/decktwo/central_hallway) +"eS" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"eT" = (/turf/simulated/wall,/area/talon/decktwo/med_room) +"eU" = (/obj/structure/table/woodentable,/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/medical,/turf/simulated/floor/carpet,/area/talon/decktwo/med_room) +"eV" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/talon/decktwo/med_room) +"eW" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/carpet,/area/talon/decktwo/med_room) +"eX" = (/obj/machinery/computer/shuttle_control/explore/talon_lifeboat{icon_state = "computer"; dir = 4},/obj/effect/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"eY" = (/obj/machinery/vending/wallmed1{emagged = 1; pixel_y = 32; shut_up = 0},/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"eZ" = (/turf/simulated/wall,/area/talon/decktwo/sec_room) +"fa" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet,/area/talon/decktwo/sec_room) +"fb" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/talon/decktwo/sec_room) +"fc" = (/obj/structure/table/woodentable,/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/security,/turf/simulated/floor/carpet,/area/talon/decktwo/sec_room) +"fd" = (/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/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"fe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"ff" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"fg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"fh" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"fi" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"fj" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"fk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"fl" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/carpet,/area/talon/decktwo/med_room) +"fm" = (/turf/simulated/floor/carpet,/area/talon/decktwo/med_room) +"fn" = (/obj/machinery/alarm/talon{dir = 8; pixel_x = 22; pixel_y = 0},/obj/effect/landmark/start{name = "Talon Doctor"},/turf/simulated/floor/carpet,/area/talon/decktwo/med_room) +"fo" = (/obj/machinery/power/apc/talon/hyper{dir = 8; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/closet/crate/plastic,/obj/item/clothing/suit/space/emergency,/obj/item/device/flashlight,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/clothing/head/helmet/space/emergency,/obj/item/device/flashlight/glowstick,/obj/item/device/flashlight/glowstick,/obj/item/device/flashlight/glowstick,/obj/item/weapon/storage/box/metalfoam,/obj/item/weapon/tank/oxygen,/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/item/device/survivalcapsule/luxury,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"fp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/lifeboat) +"fq" = (/obj/machinery/alarm/talon{alarm_id = "anomaly_testing"; breach_detection = 0; dir = 8; frequency = 1439; pixel_x = 22; pixel_y = 0; report_danger_level = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"fr" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/landmark/start{name = "Talon Guard"},/turf/simulated/floor/carpet,/area/talon/decktwo/sec_room) +"fs" = (/turf/simulated/floor/carpet,/area/talon/decktwo/sec_room) +"ft" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/carpet,/area/talon/decktwo/sec_room) +"fu" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"fv" = (/obj/machinery/power/solar,/obj/structure/cable/yellow,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"fw" = (/obj/structure/cable/yellow,/obj/machinery/power/solar,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"fx" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"fy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"fz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{dir = 4; icon_state = "light1"; pixel_x = -24},/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"fA" = (/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"fB" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/suit_cycler/vintage/tmedic,/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"fC" = (/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 4},/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/item/weapon/paper/talon_lifeboat,/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"fD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/lifeboat) +"fE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"fF" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/machinery/suit_cycler/vintage/tguard,/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"fG" = (/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"fH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"fI" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"fJ" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"fK" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"fL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/airlock{id_tag = "talon_meddoor"; name = "Doctor's Cabin"; req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/med_room) +"fM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"fN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"fO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"fP" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"fQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 1; frequency = 1380; id_tag = "talonlifeboat_docker"; pixel_x = -28; pixel_y = -28; req_one_access = list(301)},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/lifeboat) +"fR" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/structure/bed/padded,/obj/item/weapon/bedsheet,/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/lifeboat) +"fS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"fT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"fU" = (/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 = 6},/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"fV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/door/airlock{id_tag = "talon_secdoor"; name = "Guard's Cabin"; req_one_access = list(301)},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/sec_room) +"fW" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"fX" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"fY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"fZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/standard,/obj/machinery/button/remote/airlock{dir = 8; id = "talon_meddoor"; name = "Door Bolts"; pixel_x = -28; specialfunctions = 4},/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"ga" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"gb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/talon_doctor,/turf/simulated/floor/wood,/area/talon/decktwo/med_room) +"gc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/talon_guard,/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"gd" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"ge" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/standard,/obj/machinery/button/remote/airlock{dir = 4; id = "talon_secdoor"; name = "Door Bolts"; pixel_x = 28; specialfunctions = 4},/turf/simulated/floor/wood,/area/talon/decktwo/sec_room) +"gf" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{name = "Talon Secure Airlock"; req_one_access = list(301)},/turf/simulated/floor/tiled/steel_grid,/area/talon/maintenance/decktwo_aft) +"gi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon/hidden{dir = 2},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gn" = (/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"go" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gp" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"gq" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"gt" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"gu" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gx" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gz" = (/obj/machinery/door/firedoor/glass/talon/hidden,/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gA" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"gB" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gC" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gD" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gE" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"gF" = (/obj/machinery/door/firedoor/glass/talon/hidden{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{icon_state = "steel_decals5"; dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm/talon{alarm_id = "anomaly_testing"; breach_detection = 0; dir = 8; frequency = 1439; pixel_x = 22; pixel_y = 0; report_danger_level = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 1},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gI" = (/obj/structure/sign/deck2{pixel_y = 28},/turf/simulated/floor/tiled/steel_grid,/area/talon/decktwo/central_hallway) +"gJ" = (/obj/structure/railing{dir = 8},/obj/structure/lattice,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gK" = (/obj/structure/lattice,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gL" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/lattice,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gS" = (/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/airlock,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gT" = (/obj/structure/railing,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gU" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gV" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"gW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"gX" = (/obj/machinery/alarm/talon{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"gY" = (/obj/structure/catwalk,/obj/structure/cable/green{d2 = 8; dir = 2; icon_state = "0-8"},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"gZ" = (/turf/simulated/wall,/area/talon/maintenance/decktwo_port) +"ha" = (/turf/simulated/floor/tiled/white,/area/talon/decktwo/central_hallway) +"hb" = (/obj/structure/sink{pixel_y = 22},/obj/structure/mirror{pixel_y = 32},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/talon/decktwo/central_hallway) +"hc" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hd" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"he" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hf" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hg" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hh" = (/obj/machinery/cryopod/talon{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/central_hallway) +"hi" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark/talon,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_ridged,/area/talon/decktwo/central_hallway) +"hj" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"hk" = (/obj/machinery/alarm/talon{dir = 8; pixel_x = 22; pixel_y = 0},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"hl" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"hm" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/white,/area/talon/decktwo/central_hallway) +"hn" = (/obj/structure/railing{dir = 1},/obj/structure/lattice,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"ho" = (/obj/structure/railing{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"hp" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/structure/catwalk,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hq" = (/obj/machinery/computer/cryopod{pixel_x = 32},/obj/machinery/light/small,/obj/effect/landmark/talon,/turf/simulated/floor/tiled/steel_ridged,/area/talon/decktwo/central_hallway) +"hr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"hs" = (/obj/structure/catwalk,/obj/structure/cable/green{d2 = 8; dir = 2; icon_state = "0-8"},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"ht" = (/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_aft) +"hu" = (/turf/simulated/wall,/area/talon/maintenance/decktwo_aft) +"hw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hx" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 6},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hy" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"hz" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"hB" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hC" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hD" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/supply{icon_state = "down-supply"; dir = 4},/obj/machinery/door/firedoor/glass/talon,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"hF" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{icon_state = "down-scrubbers"; dir = 8},/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/down{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"hG" = (/obj/structure/cable/heavyduty{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"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"hH" = (/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/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"hI" = (/obj/machinery/power/solar,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"hJ" = (/obj/structure/cable/heavyduty,/obj/structure/cable/heavyduty{dir = 2; icon_state = "0-4"},/obj/structure/cable/heavyduty{icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"hL" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hM" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"hN" = (/obj/structure/cable/heavyduty{icon_state = "0-2"},/obj/structure/cable/heavyduty{icon_state = "0-8"},/obj/structure/cable/heavyduty,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"hO" = (/obj/effect/overmap/visitable/ship/talon,/turf/space,/area/space) +"hP" = (/obj/effect/landmark/map_data/talon,/turf/space,/area/space) +"hQ" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"hR" = (/obj/structure/ladder,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/effect/catwalk_plated,/turf/simulated/floor/plating,/area/talon/decktwo/central_hallway) +"hT" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/structure/sign/deck2{pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"hU" = (/obj/structure/catwalk,/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"hV" = (/obj/structure/catwalk,/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/lino,/area/talon/maintenance/decktwo_aft) +"hW" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"hX" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"hY" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 4},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"hZ" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_aft) +"ia" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/talon{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ib" = (/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_aft) +"ic" = (/obj/structure/lattice,/obj/structure/railing,/turf/simulated/open,/area/talon/maintenance/decktwo_aft) +"id" = (/obj/machinery/airlock_sensor{dir = 4; pixel_x = -28; req_one_access = list(301)},/obj/machinery/atmospherics/unary/vent_pump/aux{icon_state = "map_vent_aux"; dir = 1},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 8; id_tag = "talon_aft_solar"; pixel_x = 28; req_one_access = list(301)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ie" = (/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"if" = (/obj/machinery/airlock_sensor{pixel_x = -28; pixel_y = 28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/ext_sensor,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_aft) +"ig" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/sign/warning/falling{pixel_x = 31},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ih" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 10},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ii" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 6},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ij" = (/obj/machinery/atmospherics/portables_connector/aux{icon_state = "map_connector-aux"; dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ik" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 4},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"il" = (/obj/structure/catwalk,/obj/machinery/airlock_sensor{dir = 1; pixel_x = -28; pixel_y = -28; req_one_access = list(301)},/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 10},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"im" = (/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/sign/warning/airlock{pixel_y = -32},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"in" = (/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/visible/aux,/obj/machinery/door/airlock/glass_external{req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ip" = (/obj/machinery/light_switch{dir = 1; pixel_x = 8; pixel_y = -26},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"iq" = (/obj/machinery/telecomms/allinone/talon{id = "talon_aio"; network = "Talon"},/turf/simulated/floor/bluegrid,/area/talon/decktwo/tech) +"ir" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"is" = (/turf/simulated/open/vacuum,/area/space) +"it" = (/obj/structure/cable/heavyduty{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"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iu" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iv" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iw" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"ix" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/cable/heavyduty,/obj/structure/cable/heavyduty{icon_state = "0-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iy" = (/obj/structure/cable/heavyduty{icon_state = "0-2"},/obj/structure/cable/heavyduty,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iz" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iA" = (/obj/structure/cable/heavyduty{icon_state = "1-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iB" = (/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iC" = (/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iD" = (/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iE" = (/obj/structure/cable/heavyduty{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"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iF" = (/obj/structure/cable/heavyduty{dir = 2; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iG" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iH" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iI" = (/obj/structure/cable/heavyduty{icon_state = "0-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"iJ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 5},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"iK" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/aux{icon_state = "intact-aux"; dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"iL" = (/turf/simulated/open/vacuum,/area/talon/maintenance/decktwo_solars) +"iM" = (/obj/machinery/ntnet_relay,/turf/simulated/floor/bluegrid,/area/talon/decktwo/tech) +"jD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"kh" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"kv" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_aft) +"mN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/oxygen_pump{icon_state = "oxygen_tank"; dir = 4; pixel_x = 30},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"nu" = (/obj/structure/table/bench/wooden,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"nH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"ol" = (/obj/structure/sign/poster{icon_state = ""; dir = 1},/turf/simulated/wall,/area/talon/decktwo/bar) +"om" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"pY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"qG" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_aft) +"rb" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute{icon_state = "intake"; dir = 4},/obj/effect/floor_decal/rust/steel_decals_rusted1{dir = 8},/obj/effect/floor_decal/rust/steel_decals_rusted1{icon_state = "steel_decals_rusted1"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/maintenance/decktwo_aft) +"rE" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/structure/catwalk,/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "talon_lifeboatbay"; pixel_x = 8; pixel_y = 28; req_one_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"rQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"; dir = 1},/obj/effect/overmap/visitable/ship/landable/talon_lifeboat,/obj/effect/shuttle_landmark/shuttle_initializer/talon_lifeboat,/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/lifeboat) +"sx" = (/obj/machinery/button/remote/airlock{dir = 4; id = "talon_capdoor"; name = "Door Bolts"; pixel_x = 28; specialfunctions = 4},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"sE" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"tx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"tC" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/catwalk,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 1; pixel_y = 32},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"uP" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/catwalk,/obj/structure/sign/securearea{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"vc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/plating,/area/talon/decktwo/bar) +"vj" = (/obj/machinery/conveyor{dir = 8; icon_state = "conveyor0"; id = "talontrash"},/obj/machinery/door/blast/regular{dir = 4; id = "talontrashblast"},/turf/simulated/floor/tiled/techmaint,/area/talon/maintenance/decktwo_aft) +"vB" = (/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"vM" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"vO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"vS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"wW" = (/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_aft) +"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/department/telecoms{pixel_y = -31},/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"yb" = (/obj/structure/table/steel,/obj/machinery/button/remote/blast_door{dir = 8; id = "talon_windows"; name = "window blast shields"},/turf/simulated/floor/tiled/techfloor/grid,/area/talon/decktwo/bridge_upper) +"ys" = (/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"yF" = (/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 1},/obj/structure/disposaloutlet{icon_state = "outlet"; dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/rust/steel_decals_rusted1{dir = 8},/obj/effect/floor_decal/rust/steel_decals_rusted1{icon_state = "steel_decals_rusted1"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/talon/maintenance/decktwo_aft) +"zm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"AA" = (/obj/structure/sign/poster{icon_state = ""; dir = 4},/turf/simulated/wall,/area/talon/maintenance/decktwo_starboard) +"AC" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"AT" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"BC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"Dk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/media/jukebox,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"Dz" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Em" = (/obj/structure/disposalpipe/trunk{icon_state = "pipe-t"; dir = 4},/obj/structure/disposaloutlet,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"EA" = (/obj/machinery/conveyor{dir = 8; icon_state = "conveyor0"; id = "talontrash"},/turf/simulated/floor/tiled/techmaint,/area/talon/maintenance/decktwo_aft) +"FD" = (/obj/structure/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/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/camera/network/talon{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"Gk" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Gq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/structure/sign/directions/roomnum{icon_state = "roomnum"; dir = 1; pixel_x = -31; pixel_y = -9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"Ib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/lifeboat) +"Ie" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"IL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/oxygen_pump{icon_state = "oxygen_tank"; dir = 8; pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"Jf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/decktwo/cap_room) +"JL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"MS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/directions/roomnum{icon_state = "roomnum"; dir = 8; pixel_x = 32; pixel_y = -9},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"Nc" = (/obj/machinery/conveyor_switch/oneway{id = "talontrash"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"Nx" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Ou" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Ow" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Pk" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Px" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_port) +"Qm" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"QF" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/button/remote/blast_door{id = "talontrashblast"; pixel_y = 28},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"RK" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Se" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/talon/decktwo/bridge_upper) +"SU" = (/obj/effect/landmark/start{name = "Talon Captain"},/turf/simulated/floor/carpet/blucarpet,/area/talon/decktwo/cap_room) +"Tw" = (/obj/effect/floor_decal/emblem/talon,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"TC" = (/obj/structure/sign/poster{icon_state = ""; dir = 8},/turf/simulated/wall,/area/talon/decktwo/central_hallway) +"Uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{icon_state = "pipe-s"; dir = 4},/turf/simulated/floor/wood,/area/talon/decktwo/bar) +"UI" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"VV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/wall/rshull,/area/talon/maintenance/decktwo_aft) +"WZ" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/talon/decktwo/cap_room) +"Xh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular/open{id = "talon_windows"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_starboard) +"Xp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/steel,/area/talon/decktwo/central_hallway) +"Yb" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"YQ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Zc" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"Zd" = (/obj/structure/cable/green{icon_state = "4-8"; dir = 1},/turf/simulated/floor/lino,/area/talon/decktwo/bar) +"Zf" = (/obj/machinery/power/pointdefense{id_tag = "talon_pd"},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) +"ZF" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/obj/machinery/door/window/brigdoor/eastleft{dir = 2; req_access = list(301)},/turf/simulated/floor/plating,/area/talon/maintenance/decktwo_aft) +"ZP" = (/obj/structure/cable/heavyduty{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced/airless,/area/talon/maintenance/decktwo_solars) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababaaaaaaababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacadadadacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeaeaeaeaeaeaeacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeaeaeaeaeaeaeacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaeaeaeafaeaeaeacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaoaoaaaaabacaeaeagahaiaeaeacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaoaoaaaaabacajakalamybaianacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaoapapapabacaqiparasatauavawaxaxaxaxaoaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaoapaCaCaCacSeacacayawawawawolawawaxaoaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisaoaoapaCazaAaCaBaCaDaEawaFaGaHaIaJawaxaoaoisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisissEGkapaCSUaKaLaMaCaNaOawaPaQaRaSaTawaxomsEisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisOwPkapaCdZaMaMsxaCaUaVaWaXaQaYaIaZawaxRKOuisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisvOATJfnuWZbbbcbdbebfbgaWaFkhbhbiZdbjvcysDzisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisaoaobahQaMbmbnboaCbpaVaWbqbHbraIaZbsbkaoaoisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaoapaCbubmbnbvaCbwFDawbxbHbybzbAawaxaoaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaocecececeaoaoapaCbBbCbDbEaCbFbGawDkACbIaQbJawaxaoaocecececeaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfctcucucvaoaoapaCaMbKbLbMaCbwbNbOpYvBUfvBbPawbQbQbQcwePePfgfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacffifvfwfwaoaoapaCaMaKbReraCbSbTbUbVbWbXbYbZawhWcabQfwfwfvhGfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfhHfhcbcbcbcbcbaCaCaCaCaCaCcccdawawawawawawawcacabQbQbQhIhGfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfhJhMcgchcicicjccckclclcmclcncohTclcmclclckcccpcqcqcrcshMhNfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbcxcccccccccyczczczcAcBcCcDcEczczczcycccccccFcGbQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbcHcccIcJcKcLcMcNcOcNcPcQcRcNcNcNcScTcUcVcWcFcXbQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbcYcccZdadbdcdddedfjDdgdhdixmdededjdkdldmdncFdobQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbcYccdpdqdrdrdrdrdrdsdsdtdsdsdudududududvdwcFdobQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbcYccdxdqdrdydzdAdrdBdCdDdEdFdudGdHdIdudvdncFdobQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisiscfitfhcbdJccdKdqdrdLdMdNdrdOdPdQdRiqdudTdUdVdudvdWcFdXbQcfitfhisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisiscfitfhcbcYccdxdYdregeaeaebdSecedeeefdueGeheiduejdncFdobQcfitfhisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisiscfitfhcbcYccekelemeneoepdreqeseteuiMduevewexeyezeAcFdobQcfitfhisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisiscfitfhcbeBccdxeCdreDeEeFdrdsdseHdsdsdueIeJeKdueLJLcFeMbQcfitfhisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisisisisisisiscfitfhcbcYTCdxmNdrdrdrdrdreNeNeOeNeNdududududuILdnAAdobQcfitfhisisisisisisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisisisisisisisisisisZfvSIeNxIePxeQeReSXpeTeUeVeWeTeNeXrQeYeNeZfafbfceZdvfdfeffXhIeNxIenHUIisisisisisisisisisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisYbiviwixaoblfjccfkdqeTflfmfneTeNfofpfqeNeZfrfsfteZdvdWcFfubtaoiyiwizYbisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisaoaoaoiuaocbfxccfyMSeTfzfAfBeTeNfCfDfEeNeZfFfGfHeZGqdncFfIbQaoiuaoaoaoisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisisisisisisisisisisisiscfitfhcbfJccfKelfLfMfNfOeTeNfPfQfReNeZfSfTfUfVezfWcFfXbQcfitfhisisisisisisisisisisisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisisisisisisiscfitfhcbfxccfYeCeTfZgagbeTeNeNIbeNeNeZgcgdgeeZeLdwcFfIbQcfitfhisisisisisisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisisisisisisiscfitfhcbfxccgfggeTeTeTeTeThuhughhuhueZeZeZeZeZgigjcFfIbQcfitfhisisisisisisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisisisisisisiscfitfhcbfxccBCglgmccgngngorEtCgtuPgEgugngnccgvgwgkcFfIbQcfitfhisisisisisisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisisisisisisiscfitfhcbfxccgxgygzccgngngohcgBgCgDhggugngnccgFtxgGcFfIbQcfitfhisisisisisisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaisisisiscfitfhcbfxccgHgMgzgIgngngohcgJgKgLhggugngngIgFhSgNcFfIbQcfitfhisisisisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbfxccgOgPgzccgngngohcgugngohggugngnccgFgQgRcFfIbQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbfxccccgSccccgTgTgUhcgVgTgUhggVgTgTccccgWcFcFfIbQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbgXgYgZhahbcchpgqgqhdhehehehfgAgAhLcchhhizmhjhkbQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhcbhlhUgZhahmcchcgBgChngCgCgChngChoiacchhhqcFhrhsbQcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhhthuhuhuQmhuhuhcgugnicgTgTgTicgngoighuhuhuhuhwhuhtcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhhthVgpgqgqhxhYihhyhXiiikilimhegVhzirhBhCQFZFhDNchtcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfitfhhthEhdheheijhuiJikikiKhtinhthehehehRhurbvjEAyFhFhtcfitfhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoiAiBhthththththththththththtidVVwWwWwWwWwWqGhththththtiCiDaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiAiBaocececececececececehtiekvcececececececececeaoiCiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiAhMiEiEiEiEiEiEiEiEiEhZifibePePePePePePePePePhMiDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaofwfwfwfwfwfwfwfwfwiuaoZcfwfwfwfwfwfwfwfwfwaoaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoiFiGiGiGiGiGiGiGiGiGiDTwZPiHiHiHiHiHiHiHiHiHiIaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaofwfwfwfwfwfwfwfwfwaoaoYQfwfwfwfwfwfwfwfwfwaoaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoiLiLaoiLiLaoaoaoaoaoaoEmvMaoaoaoaoaoiLiLaoiLiLaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aahOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +hPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/vorestation.dme b/vorestation.dme index ec7a416f87..aeae4e7e01 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1876,6 +1876,8 @@ #include "code\modules\clothing\spacesuits\rig\suits\robotics.dm" #include "code\modules\clothing\spacesuits\rig\suits\station.dm" #include "code\modules\clothing\spacesuits\rig\suits\station_vr.dm" +#include "code\modules\clothing\spacesuits\void\event.dm" +#include "code\modules\clothing\spacesuits\void\event_vr.dm" #include "code\modules\clothing\spacesuits\void\merc.dm" #include "code\modules\clothing\spacesuits\void\military_vr.dm" #include "code\modules\clothing\spacesuits\void\station.dm"